作者 shenhailong

1. 运单实体添加 货主三种类型id

2. 添加预配新增或者修改 获取货主信息功能
3. 完善预配修改 货主只编辑1个问题
4. 预配查询 添加 货主类型3个字段返回
@@ -30,12 +30,6 @@ @@ -30,12 +30,6 @@
30 <artifactId>jackson-annotations</artifactId> 30 <artifactId>jackson-annotations</artifactId>
31 <version>2.10.0</version> 31 <version>2.10.0</version>
32 </dependency> 32 </dependency>
33 - <dependency>  
34 - <groupId>com.sy</groupId>  
35 - <artifactId>nmms-exprot</artifactId>  
36 - <version>0.0.1-SNAPSHOT</version>  
37 - <scope>compile</scope>  
38 - </dependency>  
39 </dependencies> 33 </dependencies>
40 <build> 34 <build>
41 <plugins> 35 <plugins>
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;
@@ -64,6 +64,50 @@ public class NMMS_CUSTOM_MT2201 { @@ -64,6 +64,50 @@ public class NMMS_CUSTOM_MT2201 {
64 64
65 private List<FILE> fileList; 65 private List<FILE> fileList;
66 66
  67 + private Integer consignorId;
  68 +
  69 + private Integer operatingAgentId;
  70 +
  71 + private Integer bookingAgentId;
  72 +
  73 + private String shipmentCargo;
  74 +
  75 + private String shipType;
  76 +
  77 + private String userId;
  78 +
  79 + public String getUserId() {
  80 + return userId;
  81 + }
  82 +
  83 + public void setUserId(String userId) {
  84 + this.userId = userId;
  85 + }
  86 +
  87 + public Integer getConsignorId() {
  88 + return consignorId;
  89 + }
  90 +
  91 + public void setConsignorId(Integer consignorId) {
  92 + this.consignorId = consignorId;
  93 + }
  94 +
  95 + public Integer getOperatingAgentId() {
  96 + return operatingAgentId;
  97 + }
  98 +
  99 + public void setOperatingAgentId(Integer operatingAgentId) {
  100 + this.operatingAgentId = operatingAgentId;
  101 + }
  102 +
  103 + public Integer getBookingAgentId() {
  104 + return bookingAgentId;
  105 + }
  106 +
  107 + public void setBookingAgentId(Integer bookingAgentId) {
  108 + this.bookingAgentId = bookingAgentId;
  109 + }
  110 +
67 public String getUuid() { 111 public String getUuid() {
68 return uuid; 112 return uuid;
69 } 113 }
@@ -279,4 +323,20 @@ public class NMMS_CUSTOM_MT2201 { @@ -279,4 +323,20 @@ public class NMMS_CUSTOM_MT2201 {
279 public void setFileList(List<FILE> fileList) { 323 public void setFileList(List<FILE> fileList) {
280 this.fileList = fileList; 324 this.fileList = fileList;
281 } 325 }
  326 +
  327 + public String getShipmentCargo() {
  328 + return shipmentCargo;
  329 + }
  330 +
  331 + public void setShipmentCargo(String shipmentCargo) {
  332 + this.shipmentCargo = shipmentCargo;
  333 + }
  334 +
  335 + public String getShipType() {
  336 + return shipType;
  337 + }
  338 +
  339 + public void setShipType(String shipType) {
  340 + this.shipType = shipType;
  341 + }
282 } 342 }
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 }