Showing
2 changed files
with
9 additions
and
0 deletions
| ... | @@ -51,6 +51,12 @@ public class ChmConsignment implements Serializable { | ... | @@ -51,6 +51,12 @@ public class ChmConsignment implements Serializable { |
| 51 | @Column(name = "DECLARED_UNIT_NAME") | 51 | @Column(name = "DECLARED_UNIT_NAME") |
| 52 | private String declaredUnitName; | 52 | private String declaredUnitName; |
| 53 | 53 | ||
| 54 | + /** | ||
| 55 | + * 申报口岸 | ||
| 56 | + */ | ||
| 57 | + @Column(name = "DECLARED_PORT") | ||
| 58 | + private String declaredPort; | ||
| 59 | + | ||
| 54 | 60 | ||
| 55 | /** | 61 | /** |
| 56 | * 合同协议号 | 62 | * 合同协议号 | ... | ... |
| ... | @@ -231,6 +231,9 @@ public class ChmConsignmentService { | ... | @@ -231,6 +231,9 @@ public class ChmConsignmentService { |
| 231 | if(!Objects.equals(transferWaybillStatusDictionaryEntries,null)){ | 231 | if(!Objects.equals(transferWaybillStatusDictionaryEntries,null)){ |
| 232 | result.setConsStatusDic(transferWaybillStatusDictionaryEntries); | 232 | result.setConsStatusDic(transferWaybillStatusDictionaryEntries); |
| 233 | result.setConsStatus(transferWaybillStatusDictionaryEntries.getChineseName()); | 233 | result.setConsStatus(transferWaybillStatusDictionaryEntries.getChineseName()); |
| 234 | + | ||
| 235 | + //申报口岸 固定值:天津口岸TSN | ||
| 236 | + result.setDeclaredPort("TSN"); | ||
| 234 | } | 237 | } |
| 235 | 238 | ||
| 236 | //推送时间作为创建时间,可以用来校验数据的有序性,如果新的推送时间小于已有的创建时间,就不更新数据 | 239 | //推送时间作为创建时间,可以用来校验数据的有序性,如果新的推送时间小于已有的创建时间,就不更新数据 | ... | ... |
-
Please register or login to post a comment