Showing
1 changed file
with
11 additions
and
0 deletions
| ... | @@ -129,10 +129,20 @@ public class HsCode extends BaseModel { | ... | @@ -129,10 +129,20 @@ public class HsCode extends BaseModel { |
| 129 | private String unitLegalFirst; | 129 | private String unitLegalFirst; |
| 130 | 130 | ||
| 131 | /** | 131 | /** |
| 132 | + * 第一(法定)计量单位编码 | ||
| 133 | + */ | ||
| 134 | + @Column(name = "UNIT_LEGAL_FIRST_CODE") | ||
| 135 | + private String unitLegalFirstCode; | ||
| 136 | + /** | ||
| 132 | * 第二计量单位 | 137 | * 第二计量单位 |
| 133 | */ | 138 | */ |
| 134 | @Column(name = "UNIT_LEGAL_SECOND") | 139 | @Column(name = "UNIT_LEGAL_SECOND") |
| 135 | private String unitLegalSecond; | 140 | private String unitLegalSecond; |
| 141 | + /** | ||
| 142 | + * 第二计量单位编码 | ||
| 143 | + */ | ||
| 144 | + @Column(name = "UNIT_LEGAL_SECOND_CODE") | ||
| 145 | + private String unitLegalSecondCode; | ||
| 136 | 146 | ||
| 137 | /** | 147 | /** |
| 138 | * CCC标记 | 148 | * CCC标记 |
| ... | @@ -567,4 +577,5 @@ public class HsCode extends BaseModel { | ... | @@ -567,4 +577,5 @@ public class HsCode extends BaseModel { |
| 567 | ", outRate=" + outRate + | 577 | ", outRate=" + outRate + |
| 568 | '}'; | 578 | '}'; |
| 569 | } | 579 | } |
| 580 | + | ||
| 570 | } | 581 | } | ... | ... |
-
Please register or login to post a comment