| 15 | |
| 16 | |
| 17 | class 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': '货币'}) |
nothing calls this directly
no outgoing calls
no test coverage detected