Merge remote-tracking branch 'origin/master'
正在显示
9 个修改的文件
包含
401 行增加
和
210 行删除
ReadMe.md
100644 → 100755
| @@ -28,7 +28,7 @@ | @@ -28,7 +28,7 @@ | ||
| 28 | <dependency> | 28 | <dependency> |
| 29 | <groupId>com.fasterxml.jackson.core</groupId> | 29 | <groupId>com.fasterxml.jackson.core</groupId> |
| 30 | <artifactId>jackson-annotations</artifactId> | 30 | <artifactId>jackson-annotations</artifactId> |
| 31 | - <version>2.10.0</version> | 31 | + <version>2.10.5</version> |
| 32 | </dependency> | 32 | </dependency> |
| 33 | </dependencies> | 33 | </dependencies> |
| 34 | <build> | 34 | <build> |
| 1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
| 2 | 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonFormat; | 3 | import com.fasterxml.jackson.annotation.JsonFormat; |
| 4 | +import lombok.Data; | ||
| 4 | 5 | ||
| 5 | import java.math.BigDecimal; | 6 | import java.math.BigDecimal; |
| 6 | import java.util.Date; | 7 | import java.util.Date; |
| 7 | 8 | ||
| 9 | +@Data | ||
| 8 | public class AWB_AWBINFO { | 10 | public class AWB_AWBINFO { |
| 9 | private String billid; | 11 | private String billid; |
| 10 | 12 | ||
| @@ -96,6 +98,14 @@ public class AWB_AWBINFO { | @@ -96,6 +98,14 @@ public class AWB_AWBINFO { | ||
| 96 | 98 | ||
| 97 | private String shpcustomerid; | 99 | private String shpcustomerid; |
| 98 | 100 | ||
| 101 | + private String shpstate; | ||
| 102 | + | ||
| 103 | + private String shpzipCode; | ||
| 104 | + | ||
| 105 | + private String cnszipCode; | ||
| 106 | + | ||
| 107 | + private String cnsstate; | ||
| 108 | + | ||
| 99 | private String cnsnname; | 109 | private String cnsnname; |
| 100 | 110 | ||
| 101 | private String cnsrmobiletype; | 111 | private String cnsrmobiletype; |
| @@ -268,6 +278,10 @@ public class AWB_AWBINFO { | @@ -268,6 +278,10 @@ public class AWB_AWBINFO { | ||
| 268 | 278 | ||
| 269 | private String cnscomidno; | 279 | private String cnscomidno; |
| 270 | 280 | ||
| 281 | + private String uldType; | ||
| 282 | + | ||
| 283 | + private String goodsAttribute; | ||
| 284 | + | ||
| 271 | public String getBillid() { | 285 | public String getBillid() { |
| 272 | return billid; | 286 | return billid; |
| 273 | } | 287 | } |
| 1 | +package com.sunyo.wlpt.base.model; | ||
| 2 | + | ||
| 3 | +public class FILE { | ||
| 4 | + private Integer id; | ||
| 5 | + | ||
| 6 | + private String absolutePath; | ||
| 7 | + | ||
| 8 | + private String relativePath; | ||
| 9 | + | ||
| 10 | + private String fileName; | ||
| 11 | + | ||
| 12 | + private String type; | ||
| 13 | + | ||
| 14 | + private String awba; | ||
| 15 | + | ||
| 16 | + public Integer getId() { | ||
| 17 | + return id; | ||
| 18 | + } | ||
| 19 | + | ||
| 20 | + public void setId(Integer id) { | ||
| 21 | + this.id = id; | ||
| 22 | + } | ||
| 23 | + | ||
| 24 | + public String getAbsolutePath() { | ||
| 25 | + return absolutePath; | ||
| 26 | + } | ||
| 27 | + | ||
| 28 | + public void setAbsolutePath(String absolutePath) { | ||
| 29 | + this.absolutePath = absolutePath == null ? null : absolutePath.trim(); | ||
| 30 | + } | ||
| 31 | + | ||
| 32 | + public String getRelativePath() { | ||
| 33 | + return relativePath; | ||
| 34 | + } | ||
| 35 | + | ||
| 36 | + public void setRelativePath(String relativePath) { | ||
| 37 | + this.relativePath = relativePath == null ? null : relativePath.trim(); | ||
| 38 | + } | ||
| 39 | + | ||
| 40 | + public String getFileName() { | ||
| 41 | + return fileName; | ||
| 42 | + } | ||
| 43 | + | ||
| 44 | + public void setFileName(String fileName) { | ||
| 45 | + this.fileName = fileName == null ? null : fileName.trim(); | ||
| 46 | + } | ||
| 47 | + | ||
| 48 | + public String getType() { | ||
| 49 | + return type; | ||
| 50 | + } | ||
| 51 | + | ||
| 52 | + public void setType(String type) { | ||
| 53 | + this.type = type == null ? null : type.trim(); | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public String getAwba() { | ||
| 57 | + return awba; | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + public void setAwba(String awba) { | ||
| 61 | + this.awba = awba == null ? null : awba.trim(); | ||
| 62 | + } | ||
| 63 | +} |
| 1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
| 2 | 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonFormat; | 3 | import com.fasterxml.jackson.annotation.JsonFormat; |
| 4 | +import lombok.Data; | ||
| 4 | 5 | ||
| 5 | import java.math.BigDecimal; | 6 | import java.math.BigDecimal; |
| 6 | import java.util.Date; | 7 | import java.util.Date; |
| 7 | import java.util.List; | 8 | import java.util.List; |
| 8 | 9 | ||
| 10 | +@Data | ||
| 9 | public class NMMS_CUSTOM_MT2201 { | 11 | public class NMMS_CUSTOM_MT2201 { |
| 12 | + | ||
| 10 | private String uuid; | 13 | private String uuid; |
| 11 | 14 | ||
| 12 | private String awba; | 15 | private String awba; |
| @@ -61,6 +64,62 @@ public class NMMS_CUSTOM_MT2201 { | @@ -61,6 +64,62 @@ public class NMMS_CUSTOM_MT2201 { | ||
| 61 | 64 | ||
| 62 | private List<NMMS_CUSTOM_MT2201> children; | 65 | private List<NMMS_CUSTOM_MT2201> children; |
| 63 | 66 | ||
| 67 | + private List<FILE> fileList; | ||
| 68 | + | ||
| 69 | + private Integer consignorId; | ||
| 70 | + | ||
| 71 | + private Integer operatingAgentId; | ||
| 72 | + | ||
| 73 | + private Integer bookingAgentId; | ||
| 74 | + | ||
| 75 | + private String shipmentCargo; | ||
| 76 | + | ||
| 77 | + private String shipType; | ||
| 78 | + | ||
| 79 | + private String userId; | ||
| 80 | + | ||
| 81 | + private String enterpriseId; | ||
| 82 | + | ||
| 83 | + public String getEnterpriseId() { | ||
| 84 | + return enterpriseId; | ||
| 85 | + } | ||
| 86 | + | ||
| 87 | + public void setEnterpriseId(String enterpriseId) { | ||
| 88 | + this.enterpriseId = enterpriseId; | ||
| 89 | + } | ||
| 90 | + | ||
| 91 | + public String getUserId() { | ||
| 92 | + return userId; | ||
| 93 | + } | ||
| 94 | + | ||
| 95 | + public void setUserId(String userId) { | ||
| 96 | + this.userId = userId; | ||
| 97 | + } | ||
| 98 | + | ||
| 99 | + public Integer getConsignorId() { | ||
| 100 | + return consignorId; | ||
| 101 | + } | ||
| 102 | + | ||
| 103 | + public void setConsignorId(Integer consignorId) { | ||
| 104 | + this.consignorId = consignorId; | ||
| 105 | + } | ||
| 106 | + | ||
| 107 | + public Integer getOperatingAgentId() { | ||
| 108 | + return operatingAgentId; | ||
| 109 | + } | ||
| 110 | + | ||
| 111 | + public void setOperatingAgentId(Integer operatingAgentId) { | ||
| 112 | + this.operatingAgentId = operatingAgentId; | ||
| 113 | + } | ||
| 114 | + | ||
| 115 | + public Integer getBookingAgentId() { | ||
| 116 | + return bookingAgentId; | ||
| 117 | + } | ||
| 118 | + | ||
| 119 | + public void setBookingAgentId(Integer bookingAgentId) { | ||
| 120 | + this.bookingAgentId = bookingAgentId; | ||
| 121 | + } | ||
| 122 | + | ||
| 64 | public String getUuid() { | 123 | public String getUuid() { |
| 65 | return uuid; | 124 | return uuid; |
| 66 | } | 125 | } |
| @@ -206,11 +265,11 @@ public class NMMS_CUSTOM_MT2201 { | @@ -206,11 +265,11 @@ public class NMMS_CUSTOM_MT2201 { | ||
| 206 | } | 265 | } |
| 207 | 266 | ||
| 208 | public String getCustomtype() { | 267 | public String getCustomtype() { |
| 209 | - return customtype; | 268 | + return "MT2201"; |
| 210 | } | 269 | } |
| 211 | 270 | ||
| 212 | public void setCustomtype(String customtype) { | 271 | public void setCustomtype(String customtype) { |
| 213 | - this.customtype = customtype; | 272 | + this.customtype = "MT2201"; |
| 214 | } | 273 | } |
| 215 | 274 | ||
| 216 | public String getExt2() { | 275 | public String getExt2() { |
| @@ -268,4 +327,28 @@ public class NMMS_CUSTOM_MT2201 { | @@ -268,4 +327,28 @@ public class NMMS_CUSTOM_MT2201 { | ||
| 268 | public void setUser(NMMS_CUSTOM_USER user) { | 327 | public void setUser(NMMS_CUSTOM_USER user) { |
| 269 | this.user = user; | 328 | this.user = user; |
| 270 | } | 329 | } |
| 330 | + | ||
| 331 | + public List<FILE> getFileList() { | ||
| 332 | + return fileList; | ||
| 333 | + } | ||
| 334 | + | ||
| 335 | + public void setFileList(List<FILE> fileList) { | ||
| 336 | + this.fileList = fileList; | ||
| 337 | + } | ||
| 338 | + | ||
| 339 | + public String getShipmentCargo() { | ||
| 340 | + return shipmentCargo; | ||
| 341 | + } | ||
| 342 | + | ||
| 343 | + public void setShipmentCargo(String shipmentCargo) { | ||
| 344 | + this.shipmentCargo = shipmentCargo; | ||
| 345 | + } | ||
| 346 | + | ||
| 347 | + public String getShipType() { | ||
| 348 | + return shipType; | ||
| 349 | + } | ||
| 350 | + | ||
| 351 | + public void setShipType(String shipType) { | ||
| 352 | + this.shipType = shipType; | ||
| 353 | + } | ||
| 271 | } | 354 | } |
| @@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT3201 { | @@ -44,6 +44,8 @@ public class NMMS_CUSTOM_MT3201 { | ||
| 44 | 44 | ||
| 45 | private Boolean isdelete; | 45 | private Boolean isdelete; |
| 46 | 46 | ||
| 47 | + private String customtype; | ||
| 48 | + | ||
| 47 | private String ext1; | 49 | private String ext1; |
| 48 | 50 | ||
| 49 | private String ext2; | 51 | private String ext2; |
| @@ -243,4 +245,12 @@ public class NMMS_CUSTOM_MT3201 { | @@ -243,4 +245,12 @@ public class NMMS_CUSTOM_MT3201 { | ||
| 243 | public void setChildren(List<NMMS_CUSTOM_MT3201> children) { | 245 | public void setChildren(List<NMMS_CUSTOM_MT3201> children) { |
| 244 | this.children = children; | 246 | this.children = children; |
| 245 | } | 247 | } |
| 248 | + | ||
| 249 | + public String getCustomtype() { | ||
| 250 | + return "MT3201"; | ||
| 251 | + } | ||
| 252 | + | ||
| 253 | + public void setCustomtype(String customtype) { | ||
| 254 | + this.customtype = "MT3201"; | ||
| 255 | + } | ||
| 246 | } | 256 | } |
| 1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
| 2 | 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonFormat; | 3 | import com.fasterxml.jackson.annotation.JsonFormat; |
| 4 | +import lombok.Data; | ||
| 4 | 5 | ||
| 5 | import java.math.BigDecimal; | 6 | import java.math.BigDecimal; |
| 6 | import java.util.Date; | 7 | import java.util.Date; |
| 7 | import java.util.List; | 8 | import java.util.List; |
| 8 | 9 | ||
| 10 | +@Data | ||
| 9 | public class NMMS_CUSTOM_MT4201 { | 11 | public class NMMS_CUSTOM_MT4201 { |
| 10 | private String uuid; | 12 | private String uuid; |
| 11 | 13 | ||
| @@ -54,8 +56,12 @@ public class NMMS_CUSTOM_MT4201 { | @@ -54,8 +56,12 @@ public class NMMS_CUSTOM_MT4201 { | ||
| 54 | 56 | ||
| 55 | private String ext5; | 57 | private String ext5; |
| 56 | 58 | ||
| 59 | + private String customtype; | ||
| 60 | + | ||
| 57 | private AWB_AWBINFO awbinfo; | 61 | private AWB_AWBINFO awbinfo; |
| 58 | 62 | ||
| 63 | + private NMMS_CUSTOM_USER user; | ||
| 64 | + | ||
| 59 | private List<NMMS_CUSTOM_MT4201> children; | 65 | private List<NMMS_CUSTOM_MT4201> children; |
| 60 | 66 | ||
| 61 | public String getUuid() { | 67 | public String getUuid() { |
| @@ -249,4 +255,12 @@ public class NMMS_CUSTOM_MT4201 { | @@ -249,4 +255,12 @@ public class NMMS_CUSTOM_MT4201 { | ||
| 249 | public void setChildren(List<NMMS_CUSTOM_MT4201> children) { | 255 | public void setChildren(List<NMMS_CUSTOM_MT4201> children) { |
| 250 | this.children = children; | 256 | this.children = children; |
| 251 | } | 257 | } |
| 258 | + | ||
| 259 | + public String getCustomtype() { | ||
| 260 | + return "MT3201"; | ||
| 261 | + } | ||
| 262 | + | ||
| 263 | + public void setCustomtype(String customtype) { | ||
| 264 | + this.customtype = "MT3201"; | ||
| 265 | + } | ||
| 252 | } | 266 | } |
| 1 | package com.sunyo.wlpt.base.model; | 1 | package com.sunyo.wlpt.base.model; |
| 2 | 2 | ||
| 3 | import com.fasterxml.jackson.annotation.JsonFormat; | 3 | import com.fasterxml.jackson.annotation.JsonFormat; |
| 4 | +import lombok.Data; | ||
| 4 | 5 | ||
| 5 | import java.math.BigDecimal; | 6 | import java.math.BigDecimal; |
| 6 | import java.util.Date; | 7 | import java.util.Date; |
| 7 | 8 | ||
| 9 | +@Data | ||
| 8 | public class NMMS_CUSTOM_RESPONSE { | 10 | public class NMMS_CUSTOM_RESPONSE { |
| 9 | private String id; | 11 | private String id; |
| 10 | 12 | ||
| @@ -62,211 +64,5 @@ public class NMMS_CUSTOM_RESPONSE { | @@ -62,211 +64,5 @@ public class NMMS_CUSTOM_RESPONSE { | ||
| 62 | 64 | ||
| 63 | private String opertel; | 65 | private String opertel; |
| 64 | 66 | ||
| 65 | - public String getId() { | ||
| 66 | - return id; | ||
| 67 | - } | ||
| 68 | - | ||
| 69 | - public void setId(String id) { | ||
| 70 | - this.id = id == null ? null : id.trim(); | ||
| 71 | - } | ||
| 72 | - | ||
| 73 | - public Date getFlightdate() { | ||
| 74 | - return flightdate; | ||
| 75 | - } | ||
| 76 | - | ||
| 77 | - public void setFlightdate(Date flightdate) { | ||
| 78 | - this.flightdate = flightdate; | ||
| 79 | - } | ||
| 80 | - | ||
| 81 | - public String getFlightno() { | ||
| 82 | - return flightno; | ||
| 83 | - } | ||
| 84 | - | ||
| 85 | - public void setFlightno(String flightno) { | ||
| 86 | - this.flightno = flightno == null ? null : flightno.trim(); | ||
| 87 | - } | ||
| 88 | - | ||
| 89 | - public String getCarrier() { | ||
| 90 | - return carrier; | ||
| 91 | - } | ||
| 92 | - | ||
| 93 | - public void setCarrier(String carrier) { | ||
| 94 | - this.carrier = carrier == null ? null : carrier.trim(); | ||
| 95 | - } | ||
| 96 | - | ||
| 97 | - public String getAwbano() { | ||
| 98 | - return awbano; | ||
| 99 | - } | ||
| 100 | - | ||
| 101 | - public void setAwbano(String awbano) { | ||
| 102 | - this.awbano = awbano == null ? null : awbano.trim(); | ||
| 103 | - } | ||
| 104 | - | ||
| 105 | - public String getAwbhno() { | ||
| 106 | - return awbhno; | ||
| 107 | - } | ||
| 108 | - | ||
| 109 | - public void setAwbhno(String awbhno) { | ||
| 110 | - this.awbhno = awbhno == null ? null : awbhno.trim(); | ||
| 111 | - } | ||
| 112 | - | ||
| 113 | - public String getBustype() { | ||
| 114 | - return bustype; | ||
| 115 | - } | ||
| 116 | - | ||
| 117 | - public void setBustype(String bustype) { | ||
| 118 | - this.bustype = bustype == null ? null : bustype.trim(); | ||
| 119 | - } | ||
| 120 | - | ||
| 121 | - public Date getBusdate() { | ||
| 122 | - return busdate; | ||
| 123 | - } | ||
| 124 | - | ||
| 125 | - public void setBusdate(Date busdate) { | ||
| 126 | - this.busdate = busdate; | ||
| 127 | - } | ||
| 128 | - | ||
| 129 | - public BigDecimal getBusweight() { | ||
| 130 | - return busweight; | ||
| 131 | - } | ||
| 132 | - | ||
| 133 | - public void setBusweight(BigDecimal busweight) { | ||
| 134 | - this.busweight = busweight; | ||
| 135 | - } | ||
| 136 | - | ||
| 137 | - public Integer getBuspiece() { | ||
| 138 | - return buspiece; | ||
| 139 | - } | ||
| 140 | - | ||
| 141 | - public void setBuspiece(Integer buspiece) { | ||
| 142 | - this.buspiece = buspiece; | ||
| 143 | - } | ||
| 144 | - | ||
| 145 | - public String getOpertype() { | ||
| 146 | - return opertype; | ||
| 147 | - } | ||
| 148 | - | ||
| 149 | - public void setOpertype(String opertype) { | ||
| 150 | - this.opertype = opertype == null ? null : opertype.trim(); | ||
| 151 | - } | ||
| 152 | - | ||
| 153 | - public String getCusmsgid() { | ||
| 154 | - return cusmsgid; | ||
| 155 | - } | ||
| 156 | - | ||
| 157 | - public void setCusmsgid(String cusmsgid) { | ||
| 158 | - this.cusmsgid = cusmsgid == null ? null : cusmsgid.trim(); | ||
| 159 | - } | ||
| 160 | - | ||
| 161 | - public String getCussenderid() { | ||
| 162 | - return cussenderid; | ||
| 163 | - } | ||
| 164 | - | ||
| 165 | - public void setCussenderid(String cussenderid) { | ||
| 166 | - this.cussenderid = cussenderid == null ? null : cussenderid.trim(); | ||
| 167 | - } | ||
| 168 | - | ||
| 169 | - public String getCusreciverid() { | ||
| 170 | - return cusreciverid; | ||
| 171 | - } | ||
| 172 | - | ||
| 173 | - public void setCusreciverid(String cusreciverid) { | ||
| 174 | - this.cusreciverid = cusreciverid == null ? null : cusreciverid.trim(); | ||
| 175 | - } | ||
| 176 | - | ||
| 177 | - public String getCusversion() { | ||
| 178 | - return cusversion; | ||
| 179 | - } | ||
| 180 | - | ||
| 181 | - public void setCusversion(String cusversion) { | ||
| 182 | - this.cusversion = cusversion == null ? null : cusversion.trim(); | ||
| 183 | - } | ||
| 184 | - | ||
| 185 | - public String getCusfunctioncode() { | ||
| 186 | - return cusfunctioncode; | ||
| 187 | - } | ||
| 188 | - | ||
| 189 | - public void setCusfunctioncode(String cusfunctioncode) { | ||
| 190 | - this.cusfunctioncode = cusfunctioncode == null ? null : cusfunctioncode.trim(); | ||
| 191 | - } | ||
| 192 | - | ||
| 193 | - public Date getCusresrcvtime() { | ||
| 194 | - return cusresrcvtime; | ||
| 195 | - } | ||
| 196 | - | ||
| 197 | - public void setCusresrcvtime(Date cusresrcvtime) { | ||
| 198 | - this.cusresrcvtime = cusresrcvtime; | ||
| 199 | - } | ||
| 200 | - | ||
| 201 | - public Date getCusressendtime() { | ||
| 202 | - return cusressendtime; | ||
| 203 | - } | ||
| 204 | - | ||
| 205 | - public void setCusressendtime(Date cusressendtime) { | ||
| 206 | - this.cusressendtime = cusressendtime; | ||
| 207 | - } | ||
| 208 | - | ||
| 209 | - public String getCusrescode() { | ||
| 210 | - return cusrescode; | ||
| 211 | - } | ||
| 212 | - | ||
| 213 | - public void setCusrescode(String cusrescode) { | ||
| 214 | - this.cusrescode = cusrescode == null ? null : cusrescode.trim(); | ||
| 215 | - } | ||
| 216 | - | ||
| 217 | - public String getCusresstatus() { | ||
| 218 | - return cusresstatus; | ||
| 219 | - } | ||
| 220 | - | ||
| 221 | - public void setCusresstatus(String cusresstatus) { | ||
| 222 | - this.cusresstatus = cusresstatus == null ? null : cusresstatus.trim(); | ||
| 223 | - } | ||
| 224 | - | ||
| 225 | - public String getOperusername() { | ||
| 226 | - return operusername; | ||
| 227 | - } | ||
| 228 | - | ||
| 229 | - public void setOperusername(String operusername) { | ||
| 230 | - this.operusername = operusername == null ? null : operusername.trim(); | ||
| 231 | - } | ||
| 232 | - | ||
| 233 | - public String getOpersystemname() { | ||
| 234 | - return opersystemname; | ||
| 235 | - } | ||
| 236 | - | ||
| 237 | - public void setOpersystemname(String opersystemname) { | ||
| 238 | - this.opersystemname = opersystemname == null ? null : opersystemname.trim(); | ||
| 239 | - } | ||
| 240 | - | ||
| 241 | - public String getCusrestext() { | ||
| 242 | - return cusrestext; | ||
| 243 | - } | ||
| 244 | - | ||
| 245 | - public void setCusrestext(String cusrestext) { | ||
| 246 | - this.cusrestext = cusrestext == null ? null : cusrestext.trim(); | ||
| 247 | - } | ||
| 248 | - | ||
| 249 | - public String getOperreason() { | ||
| 250 | - return operreason; | ||
| 251 | - } | ||
| 252 | - | ||
| 253 | - public void setOperreason(String operreason) { | ||
| 254 | - this.operreason = operreason; | ||
| 255 | - } | ||
| 256 | - | ||
| 257 | - public String getOperperson() { | ||
| 258 | - return operperson; | ||
| 259 | - } | ||
| 260 | - | ||
| 261 | - public void setOperperson(String operperson) { | ||
| 262 | - this.operperson = operperson; | ||
| 263 | - } | ||
| 264 | - | ||
| 265 | - public String getOpertel() { | ||
| 266 | - return opertel; | ||
| 267 | - } | ||
| 268 | - | ||
| 269 | - public void setOpertel(String opertel) { | ||
| 270 | - this.opertel = opertel; | ||
| 271 | - } | 67 | + private String userId; |
| 272 | } | 68 | } |
| 1 | +package com.sunyo.wlpt.base.model; | ||
| 2 | + | ||
| 3 | +import com.fasterxml.jackson.annotation.JsonFormat; | ||
| 4 | + | ||
| 5 | +import java.math.BigDecimal; | ||
| 6 | +import java.util.Date; | ||
| 7 | + | ||
| 8 | +public class SecurityDeclaration { | ||
| 9 | + private Integer id; | ||
| 10 | + | ||
| 11 | + private String sdWaybill; | ||
| 12 | + | ||
| 13 | + private String sdCargoShipperName; | ||
| 14 | + | ||
| 15 | + private String sdCargoAgentName; | ||
| 16 | + | ||
| 17 | + private String sdIataNumber; | ||
| 18 | + | ||
| 19 | + private String sdTransportCertificate; | ||
| 20 | + | ||
| 21 | + private String sdTransportationProve; | ||
| 22 | + | ||
| 23 | + private Integer userId; | ||
| 24 | + | ||
| 25 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
| 26 | + private Date operationTime; | ||
| 27 | + | ||
| 28 | + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") | ||
| 29 | + private Date updateTime; | ||
| 30 | + | ||
| 31 | + private Integer piece; | ||
| 32 | + | ||
| 33 | + private BigDecimal weight; | ||
| 34 | + | ||
| 35 | + private String destination; | ||
| 36 | + | ||
| 37 | + private String carrier; | ||
| 38 | + | ||
| 39 | + private String flightno; | ||
| 40 | + | ||
| 41 | + @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") | ||
| 42 | + private Date flightdate; | ||
| 43 | + | ||
| 44 | + private String customcode; | ||
| 45 | + | ||
| 46 | + private String cargoName; | ||
| 47 | + | ||
| 48 | + private String cargoType; | ||
| 49 | + | ||
| 50 | + private String status; | ||
| 51 | + | ||
| 52 | + public Integer getId() { | ||
| 53 | + return id; | ||
| 54 | + } | ||
| 55 | + | ||
| 56 | + public void setId(Integer id) { | ||
| 57 | + this.id = id; | ||
| 58 | + } | ||
| 59 | + | ||
| 60 | + public String getSdWaybill() { | ||
| 61 | + return sdWaybill; | ||
| 62 | + } | ||
| 63 | + | ||
| 64 | + public void setSdWaybill(String sdWaybill) { | ||
| 65 | + this.sdWaybill = sdWaybill == null ? null : sdWaybill.trim(); | ||
| 66 | + } | ||
| 67 | + | ||
| 68 | + public String getSdCargoShipperName() { | ||
| 69 | + return sdCargoShipperName; | ||
| 70 | + } | ||
| 71 | + | ||
| 72 | + public void setSdCargoShipperName(String sdCargoShipperName) { | ||
| 73 | + this.sdCargoShipperName = sdCargoShipperName == null ? null : sdCargoShipperName.trim(); | ||
| 74 | + } | ||
| 75 | + | ||
| 76 | + public String getSdCargoAgentName() { | ||
| 77 | + return sdCargoAgentName; | ||
| 78 | + } | ||
| 79 | + | ||
| 80 | + public void setSdCargoAgentName(String sdCargoAgentName) { | ||
| 81 | + this.sdCargoAgentName = sdCargoAgentName == null ? null : sdCargoAgentName.trim(); | ||
| 82 | + } | ||
| 83 | + | ||
| 84 | + public String getSdIataNumber() { | ||
| 85 | + return sdIataNumber; | ||
| 86 | + } | ||
| 87 | + | ||
| 88 | + public void setSdIataNumber(String sdIataNumber) { | ||
| 89 | + this.sdIataNumber = sdIataNumber == null ? null : sdIataNumber.trim(); | ||
| 90 | + } | ||
| 91 | + | ||
| 92 | + public String getSdTransportCertificate() { | ||
| 93 | + return sdTransportCertificate; | ||
| 94 | + } | ||
| 95 | + | ||
| 96 | + public void setSdTransportCertificate(String sdTransportCertificate) { | ||
| 97 | + this.sdTransportCertificate = sdTransportCertificate == null ? null : sdTransportCertificate.trim(); | ||
| 98 | + } | ||
| 99 | + | ||
| 100 | + public String getSdTransportationProve() { | ||
| 101 | + return sdTransportationProve; | ||
| 102 | + } | ||
| 103 | + | ||
| 104 | + public void setSdTransportationProve(String sdTransportationProve) { | ||
| 105 | + this.sdTransportationProve = sdTransportationProve == null ? null : sdTransportationProve.trim(); | ||
| 106 | + } | ||
| 107 | + | ||
| 108 | + public Integer getUserId() { | ||
| 109 | + return userId; | ||
| 110 | + } | ||
| 111 | + | ||
| 112 | + public void setUserId(Integer userId) { | ||
| 113 | + this.userId = userId; | ||
| 114 | + } | ||
| 115 | + | ||
| 116 | + public Date getOperationTime() { | ||
| 117 | + return operationTime; | ||
| 118 | + } | ||
| 119 | + | ||
| 120 | + public void setOperationTime(Date operationTime) { | ||
| 121 | + this.operationTime = operationTime; | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + public Date getUpdateTime() { | ||
| 125 | + return updateTime; | ||
| 126 | + } | ||
| 127 | + | ||
| 128 | + public void setUpdateTime(Date updateTime) { | ||
| 129 | + this.updateTime = updateTime; | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + public Integer getPiece() { | ||
| 133 | + return piece; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | + public void setPiece(Integer piece) { | ||
| 137 | + this.piece = piece; | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + public BigDecimal getWeight() { | ||
| 141 | + return weight; | ||
| 142 | + } | ||
| 143 | + | ||
| 144 | + public void setWeight(BigDecimal weight) { | ||
| 145 | + this.weight = weight; | ||
| 146 | + } | ||
| 147 | + | ||
| 148 | + public String getDestination() { | ||
| 149 | + return destination; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public void setDestination(String destination) { | ||
| 153 | + this.destination = destination == null ? null : destination.trim(); | ||
| 154 | + } | ||
| 155 | + | ||
| 156 | + public String getCarrier() { | ||
| 157 | + return carrier; | ||
| 158 | + } | ||
| 159 | + | ||
| 160 | + public void setCarrier(String carrier) { | ||
| 161 | + this.carrier = carrier == null ? null : carrier.trim(); | ||
| 162 | + } | ||
| 163 | + | ||
| 164 | + public String getFlightno() { | ||
| 165 | + return flightno; | ||
| 166 | + } | ||
| 167 | + | ||
| 168 | + public void setFlightno(String flightno) { | ||
| 169 | + this.flightno = flightno == null ? null : flightno.trim(); | ||
| 170 | + } | ||
| 171 | + | ||
| 172 | + public Date getFlightdate() { | ||
| 173 | + return flightdate; | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + public void setFlightdate(Date flightdate) { | ||
| 177 | + this.flightdate = flightdate; | ||
| 178 | + } | ||
| 179 | + | ||
| 180 | + public String getCustomcode() { | ||
| 181 | + return customcode; | ||
| 182 | + } | ||
| 183 | + | ||
| 184 | + public void setCustomcode(String customcode) { | ||
| 185 | + this.customcode = customcode == null ? null : customcode.trim(); | ||
| 186 | + } | ||
| 187 | + | ||
| 188 | + public String getCargoName() { | ||
| 189 | + return cargoName; | ||
| 190 | + } | ||
| 191 | + | ||
| 192 | + public void setCargoName(String cargoName) { | ||
| 193 | + this.cargoName = cargoName == null ? null : cargoName.trim(); | ||
| 194 | + } | ||
| 195 | + | ||
| 196 | + public String getCargoType() { | ||
| 197 | + return cargoType; | ||
| 198 | + } | ||
| 199 | + | ||
| 200 | + public void setCargoType(String cargoType) { | ||
| 201 | + this.cargoType = cargoType == null ? null : cargoType.trim(); | ||
| 202 | + } | ||
| 203 | + | ||
| 204 | + public String getStatus() { | ||
| 205 | + return status; | ||
| 206 | + } | ||
| 207 | + | ||
| 208 | + public void setStatus(String status) { | ||
| 209 | + this.status = status == null ? null : status.trim(); | ||
| 210 | + } | ||
| 211 | +} |
-
请 注册 或 登录 后发表评论