MCPcopy Create free account
hub / github.com/cxapython/catvm / ExportClassAmountItem

Class ExportClassAmountItem

selenium/shannon_spider/orm/export_class_amount.py:17–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15
16
17class ExportClassAmountItem(CommonFieldMixin, ItemBaseModel):
18
19 __tablename__ = 'export_commodities_class_amount'
20 desc = '中国海关进口数量和分类'
21
22 YEAR_MONTH = Column(String(20), doc={'zh': '年月'})
23 COMMODITY_CLASS = Column(String(100), doc={'zh': '商品总类'})
24 COMMODITY_CHAPTER = Column(String(100), doc={'zh': '商品类别'})
25 COUNTRY_REGION = Column(String(100), doc={'zh': '国家地区'})
26 AMOUNT = Column(Numeric(20, 4), doc={'zh': '数量'})
27 TYPE = Column(String(20), doc={'zh': '类型'})
28 UNIT = Column(String(20), doc={'zh': '单位'})
29 CURRENCY = Column(String(20), doc={'zh': '货币'})

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected