作者 zhangFan

add entetCancel

@@ -4,10 +4,8 @@ package com.sy.logic; @@ -4,10 +4,8 @@ package com.sy.logic;
4 import com.alibaba.fastjson.JSON; 4 import com.alibaba.fastjson.JSON;
5 import com.alibaba.fastjson.JSONArray; 5 import com.alibaba.fastjson.JSONArray;
6 import com.sy.crossDomain.buildBarCode; 6 import com.sy.crossDomain.buildBarCode;
7 -import com.sy.model.GatherInfo;  
8 -import com.sy.model.LandBusinessTypeList;  
9 -import com.sy.model.LandRoadVe;  
10 -import com.sy.model.RESMESSAGE; 7 +import com.sy.model.*;
  8 +import com.sy.service.EnterCancelServer;
11 import com.sy.service.LandBusListService; 9 import com.sy.service.LandBusListService;
12 import com.sy.service.LandRoadVeService; 10 import com.sy.service.LandRoadVeService;
13 import com.sy.service.ResMessageService; 11 import com.sy.service.ResMessageService;
@@ -52,7 +50,10 @@ public class LogicOperation { @@ -52,7 +50,10 @@ public class LogicOperation {
52 @Autowired 50 @Autowired
53 private ResMessageService resMessageService; 51 private ResMessageService resMessageService;
54 52
55 - private static LogicOperation logic; 53 + @Autowired
  54 + private EnterCancelServer enterCancelServer;
  55 +
  56 + private static LogicOperation logic = new LogicOperation();
56 57
57 //读取配置文件里的载重与称重的可控范围 58 //读取配置文件里的载重与称重的可控范围
58 private static String checkWt = FileTool.readProperties("grossWt"); 59 private static String checkWt = FileTool.readProperties("grossWt");
@@ -64,8 +65,8 @@ public class LogicOperation { @@ -64,8 +65,8 @@ public class LogicOperation {
64 private static String INPUTSTATION = "此车辆未做进站申请"; 65 private static String INPUTSTATION = "此车辆未做进站申请";
65 private static String ENTERSTATION = "此车辆未做出站申请"; 66 private static String ENTERSTATION = "此车辆未做出站申请";
66 private static String ISVALID = "二维码数据异常,请使用正确的二维码数据"; 67 private static String ISVALID = "二维码数据异常,请使用正确的二维码数据";
67 - private static String ERRORWT="出起始场站的重量和进目的场站的重量不一致";  
68 - private static String IEPORSE="无相对应进出场申请"; 68 + private static String ERRORWT = "出起始场站的重量和进目的场站的重量不一致";
  69 + private static String IEPORSE = "无相对应进出场申请";
69 70
70 @PostConstruct 71 @PostConstruct
71 public void init() { 72 public void init() {
@@ -73,6 +74,7 @@ public class LogicOperation { @@ -73,6 +74,7 @@ public class LogicOperation {
73 logic.listService = this.listService; 74 logic.listService = this.listService;
74 logic.veService = this.veService; 75 logic.veService = this.veService;
75 logic.resMessageService = this.resMessageService; 76 logic.resMessageService = this.resMessageService;
  77 + logic.enterCancelServer = this.enterCancelServer;
76 } 78 }
77 79
78 /** 80 /**
@@ -96,7 +98,7 @@ public class LogicOperation { @@ -96,7 +98,7 @@ public class LogicOperation {
96 } 98 }
97 LandBusinessTypeList list = logic.listService.selectForOne(info.getVename(), info.getBarcode(), info.getAreaid 99 LandBusinessTypeList list = logic.listService.selectForOne(info.getVename(), info.getBarcode(), info.getAreaid
98 (), info.getChnlno(), info.getIetype()); 100 (), info.getChnlno(), info.getIetype());
99 - if(list == null) { 101 + if (list == null) {
100 CommandClient.Client(info, IEPORSE); 102 CommandClient.Client(info, IEPORSE);
101 return result; 103 return result;
102 } 104 }
@@ -113,14 +115,13 @@ public class LogicOperation { @@ -113,14 +115,13 @@ public class LogicOperation {
113 type = "E"; 115 type = "E";
114 } 116 }
115 logger.info("=======================>>>>>>>>>>" + type + "<<<<<<<<<<========================"); 117 logger.info("=======================>>>>>>>>>>" + type + "<<<<<<<<<<========================");
116 - goodsWt = GoodsWt(list.getMasterList(), type); 118 + goodsWt = logic.GoodsWt(list.getMasterList(), type);
117 } 119 }
118 //车自重 120 //车自重
119 double selfWt = Double.parseDouble(ve.getSelfWt()); 121 double selfWt = Double.parseDouble(ve.getSelfWt());
120 122
121 123
122 -  
123 - if (!logic.checkFlag(growssWt, (selfWt+goodsWt))) { 124 + if (!logic.checkFlag(growssWt, (selfWt + goodsWt))) {
124 List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId()); 125 List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId());
125 for (int i = 0; i < typeLists.size(); i++) { 126 for (int i = 0; i < typeLists.size(); i++) {
126 127
@@ -133,14 +134,14 @@ public class LogicOperation { @@ -133,14 +134,14 @@ public class LogicOperation {
133 } 134 }
134 } 135 }
135 136
136 - if ("出口送货".equals(list.getBusinesstype())){ 137 + if ("出口送货".equals(list.getBusinesstype())) {
137 if ("E".equals(list.getTurnoverflag())) { 138 if ("E".equals(list.getTurnoverflag())) {
138 if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) { 139 if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
139 - if("1".equals(list.getIsfull())){  
140 - if(list.getMasterList().length()>0){  
141 - selfWt = typeLists.get(i).getAislewt()-Double.parseDouble(typeLists.get(i).getRemark());  
142 - }else {  
143 - selfWt=growssWt; 140 + if ("1".equals(list.getIsfull())) {
  141 + if (list.getMasterList().length() > 0) {
  142 + selfWt = typeLists.get(i).getAislewt() - Double.parseDouble(typeLists.get(i).getRemark());
  143 + } else {
  144 + selfWt = growssWt;
144 } 145 }
145 } 146 }
146 break; 147 break;
@@ -148,8 +149,8 @@ public class LogicOperation { @@ -148,8 +149,8 @@ public class LogicOperation {
148 } 149 }
149 } 150 }
150 151
151 - if(list.getBusinesstype().endsWith("流转")){  
152 - if(list.getMasterList().length()>0){ 152 + if (list.getBusinesstype().endsWith("业务")) {
  153 + if (list.getMasterList().length() > 0) {
153 if ("E".equals(list.getTurnoverflag())) { 154 if ("E".equals(list.getTurnoverflag())) {
154 if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) { 155 if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
155 selfWt = typeLists.get(i).getAislewt() > 1 ? typeLists.get(i).getAislewt() : selfWt; 156 selfWt = typeLists.get(i).getAislewt() > 1 ? typeLists.get(i).getAislewt() : selfWt;
@@ -158,7 +159,7 @@ public class LogicOperation { @@ -158,7 +159,7 @@ public class LogicOperation {
158 } 159 }
159 if ("I".equals(list.getTurnoverflag())) { 160 if ("I".equals(list.getTurnoverflag())) {
160 if ("E".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) { 161 if ("E".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getContrastflag() != null) {
161 - if(!logic.checkFlag(growssWt,typeLists.get(i).getAislewt())){ 162 + if (!logic.checkFlag(growssWt, typeLists.get(i).getAislewt())) {
162 logger.info("-------->>>>>>>>出起始场站的重量和进目的场站的总量不一致<<<<<<<<--------"); 163 logger.info("-------->>>>>>>>出起始场站的重量和进目的场站的总量不一致<<<<<<<<--------");
163 CommandClient.Client(info, ERRORWT); 164 CommandClient.Client(info, ERRORWT);
164 return result; 165 return result;
@@ -167,11 +168,10 @@ public class LogicOperation { @@ -167,11 +168,10 @@ public class LogicOperation {
167 } 168 }
168 } 169 }
169 } 170 }
170 -  
171 } 171 }
172 } 172 }
173 173
174 - boolean check = checkResult(growssWt, selfWt, goodsWt); 174 + boolean check = logic.checkResult(growssWt, selfWt, goodsWt);
175 boolean checkMainfest = logic.checkManifest(list.getMasterList()); 175 boolean checkMainfest = logic.checkManifest(list.getMasterList());
176 boolean checkResult = false; 176 boolean checkResult = false;
177 177
@@ -187,25 +187,37 @@ public class LogicOperation { @@ -187,25 +187,37 @@ public class LogicOperation {
187 checkResult = true; 187 checkResult = true;
188 } 188 }
189 } 189 }
190 - logger.info("重量校验结果:"+check+",运单校验结果:"+checkMainfest+",最终校验结果:"+checkResult); 190 + logger.info("重量校验结果:" + check + ",运单校验结果:" + checkMainfest + ",最终校验结果:" + checkResult);
191 191
192 - if (sendBw(info, checkResult)) { 192 + if (logic.sendBw(info, checkResult)) {
193 if ("I".equals(info.getIetype())) { 193 if ("I".equals(info.getIetype())) {
194 - System.out.println(info.getGrosswt().doubleValue()); 194 + // LandRoadVe veName = logic.veService.selectByFrameNo(vaName);
195 list.setAislewt(info.getGrosswt().doubleValue()); 195 list.setAislewt(info.getGrosswt().doubleValue());
196 list.setUpdateDate(new Date()); 196 list.setUpdateDate(new Date());
197 - list.setRemark(String.format("%.1f",goodsWt)); 197 + list.setRemark(String.format("%.1f", goodsWt));
  198 + list.setRemark2(ve.getSelfWt());
198 list.setContrastflag("已进站"); 199 list.setContrastflag("已进站");
199 logic.checkData(list); 200 logic.checkData(list);
200 } else { 201 } else {
  202 + List<LandBusinessTypeList> typeLists = logic.listService.selectMessageId(list.getMassageId());
  203 + //进出相差重量
  204 + double diffVal = 0;
  205 + for (int i = 0; i < typeLists.size(); i++) {
  206 + if ("I".equals(typeLists.get(i).getTurnoverflag()) && typeLists.get(i).getEndstation().equals(list.getEndstation())) {
  207 + diffVal = typeLists.get(i).getAislewt() - growssWt;
  208 + break;
  209 + }
  210 + }
  211 + LandRoadVe veName = logic.veService.selectByFrameNo(vaName);
201 list.setAislewt(info.getGrosswt().doubleValue()); 212 list.setAislewt(info.getGrosswt().doubleValue());
202 list.setUpdateDate(new Date()); 213 list.setUpdateDate(new Date());
203 - list.setRemark(String.format("%.1f",goodsWt)); 214 + list.setRemark(String.format("%.1f", goodsWt));
  215 + list.setRemark1(String.format("%.1f", diffVal));
  216 + list.setRemark2(veName.getSelfWt());
204 list.setContrastflag("已出站"); 217 list.setContrastflag("已出站");
205 logic.checkData(list); 218 logic.checkData(list);
206 } 219 }
207 int row = logic.listService.updateById(list); 220 int row = logic.listService.updateById(list);
208 - System.out.println(row);  
209 List<LandBusinessTypeList> businessTypeLists = logic.listService.selectByBarcode(info.getBarcode()); 221 List<LandBusinessTypeList> businessTypeLists = logic.listService.selectByBarcode(info.getBarcode());
210 int count = 0; 222 int count = 0;
211 for (int i = 0; i < businessTypeLists.size(); i++) { 223 for (int i = 0; i < businessTypeLists.size(); i++) {
@@ -215,6 +227,7 @@ public class LogicOperation { @@ -215,6 +227,7 @@ public class LogicOperation {
215 } 227 }
216 } 228 }
217 if (list.getBusinesstype().indexOf("业务") > 0) { 229 if (list.getBusinesstype().indexOf("业务") > 0) {
  230 + logic.inOrUpEnterCancel(list);
218 if (count == 4) { 231 if (count == 4) {
219 buildBarCode.cancleBarCode(vaName); 232 buildBarCode.cancleBarCode(vaName);
220 logic.listService.updateByBarcode(info.getBarcode()); 233 logic.listService.updateByBarcode(info.getBarcode());
@@ -255,7 +268,7 @@ public class LogicOperation { @@ -255,7 +268,7 @@ public class LogicOperation {
255 * @Param goodsWt 货物总重 268 * @Param goodsWt 货物总重
256 * @Result 获取运单重量 269 * @Result 获取运单重量
257 */ 270 */
258 - public static boolean checkResult(double grossWt, double wt, double goodsWt) { 271 + public boolean checkResult(double grossWt, double wt, double goodsWt) {
259 DecimalFormat df = new DecimalFormat("0.00"); 272 DecimalFormat df = new DecimalFormat("0.00");
260 boolean flag = false; 273 boolean flag = false;
261 double result = 0.0; 274 double result = 0.0;
@@ -275,90 +288,95 @@ public class LogicOperation { @@ -275,90 +288,95 @@ public class LogicOperation {
275 * @Param ietype 进出标志 288 * @Param ietype 进出标志
276 * 获取货物总重 289 * 获取货物总重
277 */ 290 */
278 - public static double GoodsWt(String mainifast, String ietype) { 291 + public double GoodsWt(String mainifast, String ietype) {
279 Double sum = 0.0; 292 Double sum = 0.0;
280 if (mainifast.length() > 0) { 293 if (mainifast.length() > 0) {
281 String[] mainifastList = mainifast.split(","); 294 String[] mainifastList = mainifast.split(",");
282 for (String mainBill : mainifastList) { 295 for (String mainBill : mainifastList) {
283 - sum = sum += getGrossWt(mainBill, ietype); 296 + sum += getGrossWt(mainBill, ietype);
284 } 297 }
285 } 298 }
286 return sum; 299 return sum;
287 } 300 }
288 301
289 /** 302 /**
290 - * 查询运单是否全部放行  
291 - *  
292 - * @param manifestList  
293 - * @return  
294 - */  
295 - public boolean checkManifest(String manifestList) {  
296 - if (manifestList.length() < 1) return false;  
297 - manifestList = manifestList.replace("-", "");  
298 - String[] maifest = manifestList.split(",");  
299 - boolean flag = false;  
300 - int count = 0;  
301 - for (int i = 0; i < maifest.length; i++) {  
302 - RESMESSAGE resmessage = logic.resMessageService.selectByManifest(maifest[i]);  
303 - if(resmessage !=null){  
304 - if ("11".equals(resmessage.getResponsecode())) {  
305 - count++;  
306 - }  
307 - }  
308 - }  
309 - if (count == maifest.length) {  
310 - flag = true;  
311 - }  
312 - return flag;  
313 - }  
314 -  
315 - /**  
316 * @Param waybill 主单号 303 * @Param waybill 主单号
317 * @Param imp 进出港标识 304 * @Param imp 进出港标识
318 * @Result 获取运单重量 305 * @Result 获取运单重量
319 */ 306 */
320 - public static double getGrossWt(String waybill, String imp) {  
321 - // logger.info("进入获取重量action"); 307 + public double getGrossWt(String waybill, String imp) {
  308 + logger.info("进入获取重量action");
  309 + if (!(waybill.indexOf("-") != -1)) {
  310 + waybill = waybill.substring(0, 3) + "-" + waybill.substring(3);
  311 + }
322 String url = "http://10.50.3.64:8080/tj/orig/orig?waybill=" + waybill + "&imp=" + imp; 312 String url = "http://10.50.3.64:8080/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
323 - // String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig=" + waybill + "&imp=" + imp; 313 + // String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
324 StringBuilder json = new StringBuilder(); 314 StringBuilder json = new StringBuilder();
325 Map map = null; 315 Map map = null;
326 double bg = 0; 316 double bg = 0;
327 try { 317 try {
328 URL Url = new URL(url); 318 URL Url = new URL(url);
329 URLConnection yc = Url.openConnection(); 319 URLConnection yc = Url.openConnection();
330 - BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream())); 320 + BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream(), "utf-8"));
331 String inputLine = null; 321 String inputLine = null;
332 while ((inputLine = in.readLine()) != null) { 322 while ((inputLine = in.readLine()) != null) {
333 json.append(inputLine); 323 json.append(inputLine);
334 } 324 }
335 - // logger.info("返回数据:" + json); 325 + logger.info("返回数据:" + json);
336 JSONArray array = JSONArray.parseArray(json.toString()); 326 JSONArray array = JSONArray.parseArray(json.toString());
337 for (int i = 0; i < array.size(); i++) { 327 for (int i = 0; i < array.size(); i++) {
338 map = JSON.parseObject(array.getString(i)); 328 map = JSON.parseObject(array.getString(i));
339 - System.out.println(map);  
340 - if(map.containsKey("receiptinformation")){ 329 + if (map.containsKey("receiptinformation")) {
341 if (map.get("receiptinformation").toString().startsWith("41301") || map.get("receiptinformation") 330 if (map.get("receiptinformation").toString().startsWith("41301") || map.get("receiptinformation")
342 .toString().startsWith("41106") || map.get("receiptinformation") 331 .toString().startsWith("41106") || map.get("receiptinformation")
343 .toString().startsWith("31301") || map.get("receiptinformation") 332 .toString().startsWith("31301") || map.get("receiptinformation")
344 .toString().startsWith("31106") || map.get("receiptinformation") 333 .toString().startsWith("31106") || map.get("receiptinformation")
345 - .toString().indexOf("提运单放行")!=-1) { 334 + .toString().indexOf("提运单放行") != -1) {
  335 + logger.info(map);
346 bg = Double.parseDouble((String) map.get("totalweight")); 336 bg = Double.parseDouble((String) map.get("totalweight"));
347 logger.info("for循环取重量:" + bg); 337 logger.info("for循环取重量:" + bg);
348 return bg; 338 return bg;
349 } 339 }
350 } 340 }
351 } 341 }
352 - // logger.info("访问返回的数据重量:" + bg); 342 + logger.info("访问返回的数据重量:" + bg);
353 in.close(); 343 in.close();
354 } catch (MalformedURLException e) { 344 } catch (MalformedURLException e) {
355 - // logger.info(e.toString()); 345 + e.printStackTrace();
  346 + logger.error(e);
356 } catch (IOException e) { 347 } catch (IOException e) {
357 - // logger.info(e.toString()); 348 + e.printStackTrace();
  349 + logger.error(e);
358 } 350 }
359 return bg; 351 return bg;
360 } 352 }
361 353
  354 + /**
  355 + * 查询运单是否全部放行
  356 + *
  357 + * @param manifestList
  358 + * @return
  359 + */
  360 + public boolean checkManifest(String manifestList) {
  361 + if (manifestList.length() < 1) return false;
  362 + manifestList = manifestList.replace("-", "");
  363 + String[] maifest = manifestList.split(",");
  364 + boolean flag = false;
  365 + int count = 0;
  366 + for (int i = 0; i < maifest.length; i++) {
  367 + RESMESSAGE resmessage = logic.resMessageService.selectByManifest(maifest[i]);
  368 + if (resmessage != null) {
  369 + if ("11".equals(resmessage.getResponsecode())) {
  370 + count++;
  371 + }
  372 + }
  373 + }
  374 + if (count == maifest.length) {
  375 + flag = true;
  376 + }
  377 + return flag;
  378 + }
  379 +
362 380
363 /** 381 /**
364 * 给码头发送卡口数据 382 * 给码头发送卡口数据
@@ -411,7 +429,7 @@ public class LogicOperation { @@ -411,7 +429,7 @@ public class LogicOperation {
411 * 校验重量并发送报文 429 * 校验重量并发送报文
412 */ 430 */
413 431
414 - public static boolean sendBw(GatherInfo info, boolean check) { 432 + public boolean sendBw(GatherInfo info, boolean check) {
415 boolean flag = false; 433 boolean flag = false;
416 if (check) { 434 if (check) {
417 CommandClient.Client(info, PERMITTHOUGH); 435 CommandClient.Client(info, PERMITTHOUGH);
@@ -448,5 +466,55 @@ public class LogicOperation { @@ -448,5 +466,55 @@ public class LogicOperation {
448 return flag; 466 return flag;
449 } 467 }
450 468
  469 + /**
  470 + * 生成或者更新货物冻结标识
  471 + *
  472 + * @param landBusinessTypeList
  473 + */
  474 + public void inOrUpEnterCancel(LandBusinessTypeList landBusinessTypeList) {
  475 + if (landBusinessTypeList.getMasterList().length() < 1) return;
  476 + String[] list = landBusinessTypeList.getMasterList().split(",");
  477 + String flag = null;
  478 + for (int i = 0; i < list.length; i++) {
  479 + if("调拨业务".equals(landBusinessTypeList.getBusinesstype())){
  480 + flag = "E";
  481 + }else {
  482 + flag = "I";
  483 + }
  484 + double wt = getGrossWt(list[i],flag);
  485 +
  486 + ENTERCANCCEL entercanccel = logic.enterCancelServer.selectByManifest(list[i]);
  487 + if (entercanccel != null) {
  488 + if ("0".equals(entercanccel.getIsfreeze())) {
  489 + entercanccel.setIsfreeze("1");
  490 + entercanccel.setEndport(landBusinessTypeList.getEndstation());
  491 + entercanccel.setUpdateBy(landBusinessTypeList.getCreateBy());
  492 + entercanccel.setUpdateTime(new Date());
  493 + logic.enterCancelServer.updateByPermaryKey(entercanccel);
  494 + }
  495 + }else {
  496 + if("E".equals(landBusinessTypeList.getTurnoverflag())){
  497 + ENTERCANCCEL canccel = new ENTERCANCCEL();
  498 + canccel.setIsfreeze("0");
  499 + canccel.setVename(landBusinessTypeList.getTrailerFrameNo());
  500 + canccel.setId(String.valueOf(System.currentTimeMillis()));
  501 + canccel.setVeCompanyName(landBusinessTypeList.getAgentno());
  502 + canccel.setBusinesstype(landBusinessTypeList.getBusinesstype());
  503 + canccel.setManifest(list[i]);
  504 + canccel.setAgentname(landBusinessTypeList.getAgentname());
  505 + canccel.setStartport(landBusinessTypeList.getEndstation());
  506 + canccel.setGrosswt(landBusinessTypeList.getAislewt());
  507 + canccel.setCreateBy(landBusinessTypeList.getCreateBy());
  508 + canccel.setCreateTime(new Date());
  509 + canccel.setUpdateBy(landBusinessTypeList.getCreateBy());
  510 + canccel.setUpdateTime(new Date());
  511 + canccel.setWeight(wt);
  512 + logic.enterCancelServer.insertEntry(canccel);
  513 + }
  514 +
  515 + }
  516 + }
  517 + }
  518 +
451 519
452 } 520 }
  1 +package com.sy.mapper;
  2 +
  3 +import com.sy.model.ENTERCANCCEL;
  4 +import org.springframework.stereotype.Component;
  5 +
  6 +@Component
  7 +public interface ENTERCANCCELMapper {
  8 + int deleteByPrimaryKey(String id);
  9 +
  10 + int insert(ENTERCANCCEL record);
  11 +
  12 + int insertSelective(ENTERCANCCEL record);
  13 +
  14 + ENTERCANCCEL selectByPrimaryKey(String id);
  15 +
  16 + int updateByPrimaryKeySelective(ENTERCANCCEL record);
  17 +
  18 + int updateByPrimaryKey(ENTERCANCCEL record);
  19 +
  20 + ENTERCANCCEL selectByManifest(String manifest);
  21 +}
  1 +package com.sy.model;
  2 +
  3 +import java.util.Date;
  4 +
  5 +public class ENTERCANCCEL {
  6 + private String id;
  7 +
  8 + private String vename;
  9 +
  10 + private String veCompanyName;
  11 +
  12 + private String agentname;
  13 +
  14 + private String businesstype;
  15 +
  16 + private String manifest;
  17 +
  18 + private Double weight;
  19 +
  20 + private Double grosswt;
  21 +
  22 + private String goodname;
  23 +
  24 + private String startport;
  25 +
  26 + private String endport;
  27 +
  28 + private String isfreeze;
  29 +
  30 + private String createBy;
  31 +
  32 + private Date createTime;
  33 +
  34 + private String updateBy;
  35 +
  36 + private Date updateTime;
  37 +
  38 + public String getId() {
  39 + return id;
  40 + }
  41 +
  42 + public void setId(String id) {
  43 + this.id = id == null ? null : id.trim();
  44 + }
  45 +
  46 + public String getVename() {
  47 + return vename;
  48 + }
  49 +
  50 + public void setVename(String vename) {
  51 + this.vename = vename == null ? null : vename.trim();
  52 + }
  53 +
  54 + public String getVeCompanyName() {
  55 + return veCompanyName;
  56 + }
  57 +
  58 + public void setVeCompanyName(String veCompanyName) {
  59 + this.veCompanyName = veCompanyName == null ? null : veCompanyName.trim();
  60 + }
  61 +
  62 + public String getAgentname() {
  63 + return agentname;
  64 + }
  65 +
  66 + public void setAgentname(String agentname) {
  67 + this.agentname = agentname == null ? null : agentname.trim();
  68 + }
  69 +
  70 + public String getBusinesstype() {
  71 + return businesstype;
  72 + }
  73 +
  74 + public void setBusinesstype(String businesstype) {
  75 + this.businesstype = businesstype == null ? null : businesstype.trim();
  76 + }
  77 +
  78 + public String getManifest() {
  79 + return manifest;
  80 + }
  81 +
  82 + public void setManifest(String manifest) {
  83 + this.manifest = manifest == null ? null : manifest.trim();
  84 + }
  85 +
  86 + public Double getWeight() {
  87 + return weight;
  88 + }
  89 +
  90 + public void setWeight(Double weight) {
  91 + this.weight = weight;
  92 + }
  93 +
  94 + public Double getGrosswt() {
  95 + return grosswt;
  96 + }
  97 +
  98 + public void setGrosswt(Double grosswt) {
  99 + this.grosswt = grosswt;
  100 + }
  101 +
  102 + public String getGoodname() {
  103 + return goodname;
  104 + }
  105 +
  106 + public void setGoodname(String goodname) {
  107 + this.goodname = goodname == null ? null : goodname.trim();
  108 + }
  109 +
  110 + public String getStartport() {
  111 + return startport;
  112 + }
  113 +
  114 + public void setStartport(String startport) {
  115 + this.startport = startport == null ? null : startport.trim();
  116 + }
  117 +
  118 + public String getEndport() {
  119 + return endport;
  120 + }
  121 +
  122 + public void setEndport(String endport) {
  123 + this.endport = endport == null ? null : endport.trim();
  124 + }
  125 +
  126 + public String getIsfreeze() {
  127 + return isfreeze;
  128 + }
  129 +
  130 + public void setIsfreeze(String isfreeze) {
  131 + this.isfreeze = isfreeze == null ? null : isfreeze.trim();
  132 + }
  133 +
  134 + public String getCreateBy() {
  135 + return createBy;
  136 + }
  137 +
  138 + public void setCreateBy(String createBy) {
  139 + this.createBy = createBy == null ? null : createBy.trim();
  140 + }
  141 +
  142 + public Date getCreateTime() {
  143 + return createTime;
  144 + }
  145 +
  146 + public void setCreateTime(Date createTime) {
  147 + this.createTime = createTime;
  148 + }
  149 +
  150 + public String getUpdateBy() {
  151 + return updateBy;
  152 + }
  153 +
  154 + public void setUpdateBy(String updateBy) {
  155 + this.updateBy = updateBy == null ? null : updateBy.trim();
  156 + }
  157 +
  158 + public Date getUpdateTime() {
  159 + return updateTime;
  160 + }
  161 +
  162 + public void setUpdateTime(Date updateTime) {
  163 + this.updateTime = updateTime;
  164 + }
  165 +}
  1 +package com.sy.service;
  2 +
  3 +import com.sy.model.ENTERCANCCEL;
  4 +
  5 +/**
  6 + * @author
  7 + * @time 2019-05-20 14:36
  8 + */
  9 +public interface EnterCancelServer {
  10 + ENTERCANCCEL selectByManifest(String manifest);
  11 + int updateByPermaryKey(ENTERCANCCEL entercanccel);
  12 + int insertEntry(ENTERCANCCEL entercanccel);
  13 +}
  1 +package com.sy.service.impl;
  2 +
  3 +import com.sy.mapper.ENTERCANCCELMapper;
  4 +import com.sy.model.ENTERCANCCEL;
  5 +import com.sy.service.EnterCancelServer;
  6 +import org.springframework.beans.factory.annotation.Autowired;
  7 +import org.springframework.stereotype.Service;
  8 +
  9 +/**
  10 + * @author
  11 + * @time 2019-05-20 14:41
  12 + */
  13 +@Service
  14 +public class EnterCancelServerImpl implements EnterCancelServer {
  15 +
  16 + @Autowired
  17 + private ENTERCANCCELMapper mapper;
  18 +
  19 + @Override
  20 + public int insertEntry(ENTERCANCCEL entercanccel){
  21 + int row = 0;
  22 + try {
  23 + row = mapper.insertSelective(entercanccel);
  24 + }catch (NullPointerException e){
  25 + e.printStackTrace();
  26 + }
  27 + return row;
  28 + }
  29 +
  30 + @Override
  31 + public int updateByPermaryKey(ENTERCANCCEL entercanccel) {
  32 + int row = 0;
  33 + try {
  34 + row = mapper.updateByPrimaryKey(entercanccel);
  35 + }catch (NullPointerException e){
  36 + e.printStackTrace();
  37 + }
  38 + return row;
  39 + }
  40 +
  41 + @Override
  42 + public ENTERCANCCEL selectByManifest(String manifest) {
  43 + ENTERCANCCEL entercanccel = mapper.selectByManifest(manifest);
  44 + return entercanccel;
  45 + }
  46 +}
@@ -74,7 +74,7 @@ @@ -74,7 +74,7 @@
74 <!-- <table tableName="ResMessage" domainObjectName="RESMESSAGE" enableCountByExample="false" 74 <!-- <table tableName="ResMessage" domainObjectName="RESMESSAGE" enableCountByExample="false"
75 enableUpdateByExample="false" 75 enableUpdateByExample="false"
76 enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>--> 76 enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
77 - <table tableName="land_businesstype_list" domainObjectName="LandBusinessTypeList" enableCountByExample="false" 77 + <table tableName="entercancel" domainObjectName="ENTERCANCCEL" enableCountByExample="false"
78 enableUpdateByExample="false" 78 enableUpdateByExample="false"
79 enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> 79 enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
80 </context> 80 </context>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3 +<mapper namespace="com.sy.mapper.ENTERCANCCELMapper">
  4 + <resultMap id="BaseResultMap" type="com.sy.model.ENTERCANCCEL">
  5 + <id column="ID" jdbcType="VARCHAR" property="id" />
  6 + <result column="VENAME" jdbcType="VARCHAR" property="vename" />
  7 + <result column="VE_COMPANY_NAME" jdbcType="VARCHAR" property="veCompanyName" />
  8 + <result column="AGENTNAME" jdbcType="VARCHAR" property="agentname" />
  9 + <result column="BUSINESSTYPE" jdbcType="VARCHAR" property="businesstype" />
  10 + <result column="MANIFEST" jdbcType="VARCHAR" property="manifest" />
  11 + <result column="WEIGHT" jdbcType="DOUBLE" property="weight" />
  12 + <result column="GROSSWT" jdbcType="DOUBLE" property="grosswt" />
  13 + <result column="GOODNAME" jdbcType="VARCHAR" property="goodname" />
  14 + <result column="STARTPORT" jdbcType="VARCHAR" property="startport" />
  15 + <result column="ENDPORT" jdbcType="VARCHAR" property="endport" />
  16 + <result column="ISFREEZE" jdbcType="VARCHAR" property="isfreeze" />
  17 + <result column="CREATE_BY" jdbcType="VARCHAR" property="createBy" />
  18 + <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
  19 + <result column="UPDATE_BY" jdbcType="VARCHAR" property="updateBy" />
  20 + <result column="UPDATE_TIME" jdbcType="TIMESTAMP" property="updateTime" />
  21 + </resultMap>
  22 + <sql id="Base_Column_List">
  23 + ID, VENAME, VE_COMPANY_NAME, AGENTNAME, BUSINESSTYPE, MANIFEST, WEIGHT, GROSSWT,
  24 + GOODNAME, STARTPORT, ENDPORT, ISFREEZE, CREATE_BY, CREATE_TIME, UPDATE_BY, UPDATE_TIME
  25 + </sql>
  26 + <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  27 + select
  28 + <include refid="Base_Column_List" />
  29 + from entercancel
  30 + where ID = #{id,jdbcType=VARCHAR}
  31 + </select>
  32 + <select id="selectByManifest" parameterType="java.lang.String" resultMap="BaseResultMap">
  33 + select
  34 + <include refid="Base_Column_List" />
  35 + from entercancel
  36 + where MANIFEST = #{manifest,jdbcType=VARCHAR}
  37 + </select>
  38 + <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  39 + delete from entercancel
  40 + where ID = #{id,jdbcType=VARCHAR}
  41 + </delete>
  42 + <insert id="insert" parameterType="com.sy.model.ENTERCANCCEL">
  43 + insert into entercancel (ID, VENAME, VE_COMPANY_NAME,
  44 + AGENTNAME, BUSINESSTYPE, MANIFEST,
  45 + WEIGHT, GROSSWT, GOODNAME,
  46 + STARTPORT, ENDPORT, ISFREEZE,
  47 + CREATE_BY, CREATE_TIME, UPDATE_BY,
  48 + UPDATE_TIME)
  49 + values (#{id,jdbcType=VARCHAR}, #{vename,jdbcType=VARCHAR}, #{veCompanyName,jdbcType=VARCHAR},
  50 + #{agentname,jdbcType=VARCHAR}, #{businesstype,jdbcType=VARCHAR}, #{manifest,jdbcType=VARCHAR},
  51 + #{weight,jdbcType=DOUBLE}, #{grosswt,jdbcType=DOUBLE}, #{goodname,jdbcType=VARCHAR},
  52 + #{startport,jdbcType=VARCHAR}, #{endport,jdbcType=VARCHAR}, #{isfreeze,jdbcType=VARCHAR},
  53 + #{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR},
  54 + #{updateTime,jdbcType=TIMESTAMP})
  55 + </insert>
  56 + <insert id="insertSelective" parameterType="com.sy.model.ENTERCANCCEL">
  57 + insert into entercancel
  58 + <trim prefix="(" suffix=")" suffixOverrides=",">
  59 + <if test="id != null">
  60 + ID,
  61 + </if>
  62 + <if test="vename != null">
  63 + VENAME,
  64 + </if>
  65 + <if test="veCompanyName != null">
  66 + VE_COMPANY_NAME,
  67 + </if>
  68 + <if test="agentname != null">
  69 + AGENTNAME,
  70 + </if>
  71 + <if test="businesstype != null">
  72 + BUSINESSTYPE,
  73 + </if>
  74 + <if test="manifest != null">
  75 + MANIFEST,
  76 + </if>
  77 + <if test="weight != null">
  78 + WEIGHT,
  79 + </if>
  80 + <if test="grosswt != null">
  81 + GROSSWT,
  82 + </if>
  83 + <if test="goodname != null">
  84 + GOODNAME,
  85 + </if>
  86 + <if test="startport != null">
  87 + STARTPORT,
  88 + </if>
  89 + <if test="endport != null">
  90 + ENDPORT,
  91 + </if>
  92 + <if test="isfreeze != null">
  93 + ISFREEZE,
  94 + </if>
  95 + <if test="createBy != null">
  96 + CREATE_BY,
  97 + </if>
  98 + <if test="createTime != null">
  99 + CREATE_TIME,
  100 + </if>
  101 + <if test="updateBy != null">
  102 + UPDATE_BY,
  103 + </if>
  104 + <if test="updateTime != null">
  105 + UPDATE_TIME,
  106 + </if>
  107 + </trim>
  108 + <trim prefix="values (" suffix=")" suffixOverrides=",">
  109 + <if test="id != null">
  110 + #{id,jdbcType=VARCHAR},
  111 + </if>
  112 + <if test="vename != null">
  113 + #{vename,jdbcType=VARCHAR},
  114 + </if>
  115 + <if test="veCompanyName != null">
  116 + #{veCompanyName,jdbcType=VARCHAR},
  117 + </if>
  118 + <if test="agentname != null">
  119 + #{agentname,jdbcType=VARCHAR},
  120 + </if>
  121 + <if test="businesstype != null">
  122 + #{businesstype,jdbcType=VARCHAR},
  123 + </if>
  124 + <if test="manifest != null">
  125 + #{manifest,jdbcType=VARCHAR},
  126 + </if>
  127 + <if test="weight != null">
  128 + #{weight,jdbcType=DOUBLE},
  129 + </if>
  130 + <if test="grosswt != null">
  131 + #{grosswt,jdbcType=DOUBLE},
  132 + </if>
  133 + <if test="goodname != null">
  134 + #{goodname,jdbcType=VARCHAR},
  135 + </if>
  136 + <if test="startport != null">
  137 + #{startport,jdbcType=VARCHAR},
  138 + </if>
  139 + <if test="endport != null">
  140 + #{endport,jdbcType=VARCHAR},
  141 + </if>
  142 + <if test="isfreeze != null">
  143 + #{isfreeze,jdbcType=VARCHAR},
  144 + </if>
  145 + <if test="createBy != null">
  146 + #{createBy,jdbcType=VARCHAR},
  147 + </if>
  148 + <if test="createTime != null">
  149 + #{createTime,jdbcType=TIMESTAMP},
  150 + </if>
  151 + <if test="updateBy != null">
  152 + #{updateBy,jdbcType=VARCHAR},
  153 + </if>
  154 + <if test="updateTime != null">
  155 + #{updateTime,jdbcType=TIMESTAMP},
  156 + </if>
  157 + </trim>
  158 + </insert>
  159 + <update id="updateByPrimaryKeySelective" parameterType="com.sy.model.ENTERCANCCEL">
  160 + update entercancel
  161 + <set>
  162 + <if test="vename != null">
  163 + VENAME = #{vename,jdbcType=VARCHAR},
  164 + </if>
  165 + <if test="veCompanyName != null">
  166 + VE_COMPANY_NAME = #{veCompanyName,jdbcType=VARCHAR},
  167 + </if>
  168 + <if test="agentname != null">
  169 + AGENTNAME = #{agentname,jdbcType=VARCHAR},
  170 + </if>
  171 + <if test="businesstype != null">
  172 + BUSINESSTYPE = #{businesstype,jdbcType=VARCHAR},
  173 + </if>
  174 + <if test="manifest != null">
  175 + MANIFEST = #{manifest,jdbcType=VARCHAR},
  176 + </if>
  177 + <if test="weight != null">
  178 + WEIGHT = #{weight,jdbcType=DOUBLE},
  179 + </if>
  180 + <if test="grosswt != null">
  181 + GROSSWT = #{grosswt,jdbcType=DOUBLE},
  182 + </if>
  183 + <if test="goodname != null">
  184 + GOODNAME = #{goodname,jdbcType=VARCHAR},
  185 + </if>
  186 + <if test="startport != null">
  187 + STARTPORT = #{startport,jdbcType=VARCHAR},
  188 + </if>
  189 + <if test="endport != null">
  190 + ENDPORT = #{endport,jdbcType=VARCHAR},
  191 + </if>
  192 + <if test="isfreeze != null">
  193 + ISFREEZE = #{isfreeze,jdbcType=VARCHAR},
  194 + </if>
  195 + <if test="createBy != null">
  196 + CREATE_BY = #{createBy,jdbcType=VARCHAR},
  197 + </if>
  198 + <if test="createTime != null">
  199 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
  200 + </if>
  201 + <if test="updateBy != null">
  202 + UPDATE_BY = #{updateBy,jdbcType=VARCHAR},
  203 + </if>
  204 + <if test="updateTime != null">
  205 + UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
  206 + </if>
  207 + </set>
  208 + where ID = #{id,jdbcType=VARCHAR}
  209 + </update>
  210 + <update id="updateByPrimaryKey" parameterType="com.sy.model.ENTERCANCCEL">
  211 + update entercancel
  212 + set VENAME = #{vename,jdbcType=VARCHAR},
  213 + VE_COMPANY_NAME = #{veCompanyName,jdbcType=VARCHAR},
  214 + AGENTNAME = #{agentname,jdbcType=VARCHAR},
  215 + BUSINESSTYPE = #{businesstype,jdbcType=VARCHAR},
  216 + MANIFEST = #{manifest,jdbcType=VARCHAR},
  217 + WEIGHT = #{weight,jdbcType=DOUBLE},
  218 + GROSSWT = #{grosswt,jdbcType=DOUBLE},
  219 + GOODNAME = #{goodname,jdbcType=VARCHAR},
  220 + STARTPORT = #{startport,jdbcType=VARCHAR},
  221 + ENDPORT = #{endport,jdbcType=VARCHAR},
  222 + ISFREEZE = #{isfreeze,jdbcType=VARCHAR},
  223 + CREATE_BY = #{createBy,jdbcType=VARCHAR},
  224 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
  225 + UPDATE_BY = #{updateBy,jdbcType=VARCHAR},
  226 + UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP}
  227 + where ID = #{id,jdbcType=VARCHAR}
  228 + </update>
  229 +</mapper>