作者 zhangFan

kakoIMF check some message

... ... @@ -11,4 +11,7 @@ bakDirectory = receiveDirectory
RCVR=
TYPE=KAKO
STYP=CARM
\ No newline at end of file
STYP=CARM
#载重与称重的可控范围 ?%
grossWt=1%
\ No newline at end of file
... ...
package com.sy.IMF;
import com.caac.imf.api.IMFClient;
import com.sy.controller.AnalysisRoute;
import com.sy.bwAnalysis.AnalysisRoute;
import org.apache.log4j.Logger;
public class KAKO_Reader extends Thread{
... ...
package com.sy.bwAnalysis;
import com.sy.bwAssist.Message;
import com.sy.logic.LogicOperation;
import com.sy.model.*;
import com.sy.service.*;
import com.sy.socket.CommandClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
... ... @@ -62,6 +64,14 @@ public class AnalysisRoute {
}else{
GatherInfo info = gatherInfoAnalysis.toJavaBean(message);
route.infoService.save(info);
String flag = null;
if(new LogicOperation().operation(info)){
flag = "11";
CommandClient.Client(info,flag);
}else{
flag = "00";
CommandClient.Client(info,flag);
}
}
} else if (stype.equals("ES1")) {
airone_ex_stock exStock = exStockAnalysis.toExStock(message);
... ...
package com.sy.logic;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import org.springframework.stereotype.Component;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.Map;
@Component
public class GainGrossWt {
/**
* @Param waybill 主单号
* @Param imp 进出港标识
* @Result 获取运单重量
* */
//根据主单号和进出标志获取运单重量
public static double getGrossWt(String waybill, String imp) {
String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
StringBuilder json = new StringBuilder();
Map map = null;
double bg = 0;
try {
URL oracle = new URL(url);
URLConnection yc = oracle.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
String inputLine = null;
while ((inputLine = in.readLine()) != null) {
json.append(inputLine);
}
JSONArray array = JSONArray.parseArray(json.toString());
for (int i = 0; i < array.size(); i++) {
map = JSON.parseObject(array.getString(i));
if (map.get("receiptinformation").toString().startsWith("41301")) {
bg = Double.parseDouble((String) map.get("totalweight"));
return bg;
}
}
in.close();
} catch (MalformedURLException e) {
e.getMessage();
} catch (IOException e) {
e.getMessage();
}
return bg;
}
}
package com.sy.logic;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.sy.model.GatherInfo;
import com.sy.model.LandBusinessTypeList;
import com.sy.model.LandRoadVe;
import com.sy.service.LandBusListService;
import com.sy.service.LandRoadVeService;
import com.sy.socket.CommandClient;
import com.sy.utils.FileTool;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.text.NumberFormat;
import java.text.ParseException;
import java.util.List;
import java.util.Map;
@Component
public class LogicOperation {
private static final Logger logger = Logger.getLogger(LogicOperation.class);
@Autowired
private LandBusListService listService;
@Autowired
private LandRoadVeService veService;
private static LogicOperation logic;
//读取配置文件里的载重与称重的可控范围
private static String checkWt = FileTool.readProperties("grossWt");
@PostConstruct
public void init(){
logic = this;
logic.listService = this.listService;
logic.veService = this.veService;
}
public boolean operation(GatherInfo info){
//开关
boolean sign = false;
BigDecimal grosssWt = info.getGrosswt();
BigDecimal grosswt = info.getGrosswt();
//转为double类型
double growsswWt = grosswt.doubleValue();
String ietype = info.getIetype();
List<LandBusinessTypeList>lists = null;
LandRoadVe ve = logic.veService.selectByFrameNo(info.getIcvename());
if("E".equals(ietype)){
ietype = "出场站";
lists = listService.selectByFrameNoAndType(info.getIcvename(),ietype);
lists = logic.listService.selectByFrameNoAndType(info.getIcvename(),ietype);
for (LandBusinessTypeList list:lists) {
//查询是否做了出场申请
if(list.getContrastflag()==""|list.getContrastflag()==null){
if(list.getContrastflag()=="" | list.getContrastflag()==null){
//判断车重
//判断载货重量是否符合所设定的范围
double goodsWt = GoodsWt(list.getMasterList(),"E");
if(checkResult(growsswWt,Double.parseDouble(ve.getSelfWt()),goodsWt)){
sign = true;
}
//发送放行指令
String flag = "";
CommandClient.Client(info,flag);
sign = true;
}
}
}else {
... ... @@ -51,4 +82,84 @@ public class LogicOperation {
}
return sign;
}
//将获取的checkWt进行小数转化
public static double valueDob(){
NumberFormat nf=NumberFormat.getPercentInstance();
Number m = null;
try {
m=nf.parse(checkWt);//将百分数转换成Number类型
}catch (ParseException e){
e.printStackTrace();
logger.info(e.getMessage());
}
return m.doubleValue();
}
/**
* @Param grossWt 地磅称重
* @Param wt 车辆自重
* @Param goodsWt 货物总重
* @Result 获取运单重量
* */
//校验载重和称重是否在合理的范围
public boolean checkResult(double grossWt,double wt,double goodsWt){
boolean flag = false;
double result = (grossWt-wt)/goodsWt;
BigDecimal bd = new BigDecimal(result);
if(bd.setScale(2,BigDecimal.ROUND_HALF_UP).doubleValue()<=valueDob()){
flag = true;
}
return flag;
}
/**
* @Param mainifast 主单列表
* @Param ietype 进出标志
* 获取货物总重
* */
public static double GoodsWt(String mainifast,String ietype){
String [] mainifastList = mainifast.split(",");
Double sum = 0.0;
for (String mainBill:mainifastList) {
sum = sum+=getGrossWt(mainBill,ietype);
}
return sum;
}
/**
* @Param waybill 主单号
* @Param imp 进出港标识
* @Result 获取运单重量
* */
public static double getGrossWt(String waybill, String imp) {
String url = "http://tjfx.15miaoo.com:8003/tj/orig/orig?waybill=" + waybill + "&imp=" + imp;
StringBuilder json = new StringBuilder();
Map map = null;
double bg = 0;
try {
URL oracle = new URL(url);
URLConnection yc = oracle.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
String inputLine = null;
while ((inputLine = in.readLine()) != null) {
json.append(inputLine);
}
JSONArray array = JSONArray.parseArray(json.toString());
for (int i = 0; i < array.size(); i++) {
map = JSON.parseObject(array.getString(i));
if (map.get("receiptinformation").toString().startsWith("41301")) {
bg = Double.parseDouble((String) map.get("totalweight"));
return bg;
}
}
in.close();
} catch (MalformedURLException e) {
e.getMessage();
} catch (IOException e) {
e.getMessage();
}
return bg;
}
}
... ...
package com.sy.mapper;
import com.sy.model.LandBusinessTypeList;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public interface LandBusinessTypeListMapper {
int deleteByPrimaryKey(String id);
int insert(LandBusinessTypeList record);
int insertSelective(LandBusinessTypeList record);
LandBusinessTypeList selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(LandBusinessTypeList record);
int updateByPrimaryKey(LandBusinessTypeList record);
//根据车牌号和进出场标志查询
List<LandBusinessTypeList> selectFrameNoAndType(String frameNo,String flag);
}
\ No newline at end of file
... ...
package com.sy.mapper;
import com.sy.model.LandRoadVe;
import org.springframework.stereotype.Component;
@Component
public interface LandRoadVeMapper {
int deleteByPrimaryKey(String id);
int insert(LandRoadVe record);
int insertSelective(LandRoadVe record);
LandRoadVe selectByPrimaryKey(String id);
int updateByPrimaryKeySelective(LandRoadVe record);
int updateByPrimaryKey(LandRoadVe record);
//根据车牌号查询
LandRoadVe selectByFrameNo(String frameNo);
}
\ No newline at end of file
... ...
package com.sy.model;
import java.util.Date;
public class LandBusinessTypeList {
private String id;
private String massageId;
private String trailerFrameNo;
private String trailerLicenseNo;
private String masterList;
private Date prodectTime;
private String returnmessage;
private String agentno;
private String agentname;
private String cocode;
private String drivername;
private String driverid;
private String startport;
private String endport;
private String startsatation;
private String endstation;
private String aisle;
private String businesstype;
private String turnoverflag;
private String contrastflag;
private String createBy;
private Date createDate;
private String updateBy;
private Date updateDate;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getMassageId() {
return massageId;
}
public void setMassageId(String massageId) {
this.massageId = massageId == null ? null : massageId.trim();
}
public String getTrailerFrameNo() {
return trailerFrameNo;
}
public void setTrailerFrameNo(String trailerFrameNo) {
this.trailerFrameNo = trailerFrameNo == null ? null : trailerFrameNo.trim();
}
public String getTrailerLicenseNo() {
return trailerLicenseNo;
}
public void setTrailerLicenseNo(String trailerLicenseNo) {
this.trailerLicenseNo = trailerLicenseNo == null ? null : trailerLicenseNo.trim();
}
public String getMasterList() {
return masterList;
}
public void setMasterList(String masterList) {
this.masterList = masterList == null ? null : masterList.trim();
}
public Date getProdectTime() {
return prodectTime;
}
public void setProdectTime(Date prodectTime) {
this.prodectTime = prodectTime;
}
public String getReturnmessage() {
return returnmessage;
}
public void setReturnmessage(String returnmessage) {
this.returnmessage = returnmessage == null ? null : returnmessage.trim();
}
public String getAgentno() {
return agentno;
}
public void setAgentno(String agentno) {
this.agentno = agentno == null ? null : agentno.trim();
}
public String getAgentname() {
return agentname;
}
public void setAgentname(String agentname) {
this.agentname = agentname == null ? null : agentname.trim();
}
public String getCocode() {
return cocode;
}
public void setCocode(String cocode) {
this.cocode = cocode == null ? null : cocode.trim();
}
public String getDrivername() {
return drivername;
}
public void setDrivername(String drivername) {
this.drivername = drivername == null ? null : drivername.trim();
}
public String getDriverid() {
return driverid;
}
public void setDriverid(String driverid) {
this.driverid = driverid == null ? null : driverid.trim();
}
public String getStartport() {
return startport;
}
public void setStartport(String startport) {
this.startport = startport == null ? null : startport.trim();
}
public String getEndport() {
return endport;
}
public void setEndport(String endport) {
this.endport = endport == null ? null : endport.trim();
}
public String getStartsatation() {
return startsatation;
}
public void setStartsatation(String startsatation) {
this.startsatation = startsatation == null ? null : startsatation.trim();
}
public String getEndstation() {
return endstation;
}
public void setEndstation(String endstation) {
this.endstation = endstation == null ? null : endstation.trim();
}
public String getAisle() {
return aisle;
}
public void setAisle(String aisle) {
this.aisle = aisle == null ? null : aisle.trim();
}
public String getBusinesstype() {
return businesstype;
}
public void setBusinesstype(String businesstype) {
this.businesstype = businesstype == null ? null : businesstype.trim();
}
public String getTurnoverflag() {
return turnoverflag;
}
public void setTurnoverflag(String turnoverflag) {
this.turnoverflag = turnoverflag == null ? null : turnoverflag.trim();
}
public String getContrastflag() {
return contrastflag;
}
public void setContrastflag(String contrastflag) {
this.contrastflag = contrastflag == null ? null : contrastflag.trim();
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy == null ? null : createBy.trim();
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy == null ? null : updateBy.trim();
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
}
\ No newline at end of file
... ...
package com.sy.model;
import java.util.Date;
public class LandRoadVe {
private String id;
private String eportId;
private String mainPort;
private String coCode;
private String veTargetNo;
private String domesticLisenceNo;
private String domesticLicenseColor;
private String foreignLicense;
private String veRegPlace;
private String veProperty;
private String veConveyQua;
private String veCardNo;
private String veOwnerName;
private String veOwnerNo;
private String ownerInsideAddr;
private String ownerInsideTel;
private String veType;
private String brand;
private String model;
private String exhaustCapacity;
private Date veFactoryDate;
private String veMotorNo;
private String veFrameNo;
private String veTon;
private String selfWt;
private String allowTowTotalWt;
private String containerInnerLength;
private String containerInnerWidth;
private String containerInnerHeight;
private String outerLength;
private String outerWidth;
private String outerHeight;
private String veBodyColor;
private String oilBoxCapcity;
private String allowVeIePort;
private String apprNo;
private Date apprPeriod;
private String currApplyBussiness;
private String front45cPic;
private String back45cPic;
private String oilBoxPic;
private String veBottomPic;
private String memo;
private String proposer;
private Date proposeTime;
private String veClassFlag;
private String operationType;
private String trailerLicenseNo;
private String trailerFrameNo;
private String approNoPic;
private String veFrameNoPic;
private String motorNoPic;
private String foreignLicensePic;
private String nationality;
private String returnmessage;
private String createBy;
private Date createDate;
private String updateBy;
private Date updateDate;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getEportId() {
return eportId;
}
public void setEportId(String eportId) {
this.eportId = eportId == null ? null : eportId.trim();
}
public String getMainPort() {
return mainPort;
}
public void setMainPort(String mainPort) {
this.mainPort = mainPort == null ? null : mainPort.trim();
}
public String getCoCode() {
return coCode;
}
public void setCoCode(String coCode) {
this.coCode = coCode == null ? null : coCode.trim();
}
public String getVeTargetNo() {
return veTargetNo;
}
public void setVeTargetNo(String veTargetNo) {
this.veTargetNo = veTargetNo == null ? null : veTargetNo.trim();
}
public String getDomesticLisenceNo() {
return domesticLisenceNo;
}
public void setDomesticLisenceNo(String domesticLisenceNo) {
this.domesticLisenceNo = domesticLisenceNo == null ? null : domesticLisenceNo.trim();
}
public String getDomesticLicenseColor() {
return domesticLicenseColor;
}
public void setDomesticLicenseColor(String domesticLicenseColor) {
this.domesticLicenseColor = domesticLicenseColor == null ? null : domesticLicenseColor.trim();
}
public String getForeignLicense() {
return foreignLicense;
}
public void setForeignLicense(String foreignLicense) {
this.foreignLicense = foreignLicense == null ? null : foreignLicense.trim();
}
public String getVeRegPlace() {
return veRegPlace;
}
public void setVeRegPlace(String veRegPlace) {
this.veRegPlace = veRegPlace == null ? null : veRegPlace.trim();
}
public String getVeProperty() {
return veProperty;
}
public void setVeProperty(String veProperty) {
this.veProperty = veProperty == null ? null : veProperty.trim();
}
public String getVeConveyQua() {
return veConveyQua;
}
public void setVeConveyQua(String veConveyQua) {
this.veConveyQua = veConveyQua == null ? null : veConveyQua.trim();
}
public String getVeCardNo() {
return veCardNo;
}
public void setVeCardNo(String veCardNo) {
this.veCardNo = veCardNo == null ? null : veCardNo.trim();
}
public String getVeOwnerName() {
return veOwnerName;
}
public void setVeOwnerName(String veOwnerName) {
this.veOwnerName = veOwnerName == null ? null : veOwnerName.trim();
}
public String getVeOwnerNo() {
return veOwnerNo;
}
public void setVeOwnerNo(String veOwnerNo) {
this.veOwnerNo = veOwnerNo == null ? null : veOwnerNo.trim();
}
public String getOwnerInsideAddr() {
return ownerInsideAddr;
}
public void setOwnerInsideAddr(String ownerInsideAddr) {
this.ownerInsideAddr = ownerInsideAddr == null ? null : ownerInsideAddr.trim();
}
public String getOwnerInsideTel() {
return ownerInsideTel;
}
public void setOwnerInsideTel(String ownerInsideTel) {
this.ownerInsideTel = ownerInsideTel == null ? null : ownerInsideTel.trim();
}
public String getVeType() {
return veType;
}
public void setVeType(String veType) {
this.veType = veType == null ? null : veType.trim();
}
public String getBrand() {
return brand;
}
public void setBrand(String brand) {
this.brand = brand == null ? null : brand.trim();
}
public String getModel() {
return model;
}
public void setModel(String model) {
this.model = model == null ? null : model.trim();
}
public String getExhaustCapacity() {
return exhaustCapacity;
}
public void setExhaustCapacity(String exhaustCapacity) {
this.exhaustCapacity = exhaustCapacity == null ? null : exhaustCapacity.trim();
}
public Date getVeFactoryDate() {
return veFactoryDate;
}
public void setVeFactoryDate(Date veFactoryDate) {
this.veFactoryDate = veFactoryDate;
}
public String getVeMotorNo() {
return veMotorNo;
}
public void setVeMotorNo(String veMotorNo) {
this.veMotorNo = veMotorNo == null ? null : veMotorNo.trim();
}
public String getVeFrameNo() {
return veFrameNo;
}
public void setVeFrameNo(String veFrameNo) {
this.veFrameNo = veFrameNo == null ? null : veFrameNo.trim();
}
public String getVeTon() {
return veTon;
}
public void setVeTon(String veTon) {
this.veTon = veTon == null ? null : veTon.trim();
}
public String getSelfWt() {
return selfWt;
}
public void setSelfWt(String selfWt) {
this.selfWt = selfWt == null ? null : selfWt.trim();
}
public String getAllowTowTotalWt() {
return allowTowTotalWt;
}
public void setAllowTowTotalWt(String allowTowTotalWt) {
this.allowTowTotalWt = allowTowTotalWt == null ? null : allowTowTotalWt.trim();
}
public String getContainerInnerLength() {
return containerInnerLength;
}
public void setContainerInnerLength(String containerInnerLength) {
this.containerInnerLength = containerInnerLength == null ? null : containerInnerLength.trim();
}
public String getContainerInnerWidth() {
return containerInnerWidth;
}
public void setContainerInnerWidth(String containerInnerWidth) {
this.containerInnerWidth = containerInnerWidth == null ? null : containerInnerWidth.trim();
}
public String getContainerInnerHeight() {
return containerInnerHeight;
}
public void setContainerInnerHeight(String containerInnerHeight) {
this.containerInnerHeight = containerInnerHeight == null ? null : containerInnerHeight.trim();
}
public String getOuterLength() {
return outerLength;
}
public void setOuterLength(String outerLength) {
this.outerLength = outerLength == null ? null : outerLength.trim();
}
public String getOuterWidth() {
return outerWidth;
}
public void setOuterWidth(String outerWidth) {
this.outerWidth = outerWidth == null ? null : outerWidth.trim();
}
public String getOuterHeight() {
return outerHeight;
}
public void setOuterHeight(String outerHeight) {
this.outerHeight = outerHeight == null ? null : outerHeight.trim();
}
public String getVeBodyColor() {
return veBodyColor;
}
public void setVeBodyColor(String veBodyColor) {
this.veBodyColor = veBodyColor == null ? null : veBodyColor.trim();
}
public String getOilBoxCapcity() {
return oilBoxCapcity;
}
public void setOilBoxCapcity(String oilBoxCapcity) {
this.oilBoxCapcity = oilBoxCapcity == null ? null : oilBoxCapcity.trim();
}
public String getAllowVeIePort() {
return allowVeIePort;
}
public void setAllowVeIePort(String allowVeIePort) {
this.allowVeIePort = allowVeIePort == null ? null : allowVeIePort.trim();
}
public String getApprNo() {
return apprNo;
}
public void setApprNo(String apprNo) {
this.apprNo = apprNo == null ? null : apprNo.trim();
}
public Date getApprPeriod() {
return apprPeriod;
}
public void setApprPeriod(Date apprPeriod) {
this.apprPeriod = apprPeriod;
}
public String getCurrApplyBussiness() {
return currApplyBussiness;
}
public void setCurrApplyBussiness(String currApplyBussiness) {
this.currApplyBussiness = currApplyBussiness == null ? null : currApplyBussiness.trim();
}
public String getFront45cPic() {
return front45cPic;
}
public void setFront45cPic(String front45cPic) {
this.front45cPic = front45cPic == null ? null : front45cPic.trim();
}
public String getBack45cPic() {
return back45cPic;
}
public void setBack45cPic(String back45cPic) {
this.back45cPic = back45cPic == null ? null : back45cPic.trim();
}
public String getOilBoxPic() {
return oilBoxPic;
}
public void setOilBoxPic(String oilBoxPic) {
this.oilBoxPic = oilBoxPic == null ? null : oilBoxPic.trim();
}
public String getVeBottomPic() {
return veBottomPic;
}
public void setVeBottomPic(String veBottomPic) {
this.veBottomPic = veBottomPic == null ? null : veBottomPic.trim();
}
public String getMemo() {
return memo;
}
public void setMemo(String memo) {
this.memo = memo == null ? null : memo.trim();
}
public String getProposer() {
return proposer;
}
public void setProposer(String proposer) {
this.proposer = proposer == null ? null : proposer.trim();
}
public Date getProposeTime() {
return proposeTime;
}
public void setProposeTime(Date proposeTime) {
this.proposeTime = proposeTime;
}
public String getVeClassFlag() {
return veClassFlag;
}
public void setVeClassFlag(String veClassFlag) {
this.veClassFlag = veClassFlag == null ? null : veClassFlag.trim();
}
public String getOperationType() {
return operationType;
}
public void setOperationType(String operationType) {
this.operationType = operationType == null ? null : operationType.trim();
}
public String getTrailerLicenseNo() {
return trailerLicenseNo;
}
public void setTrailerLicenseNo(String trailerLicenseNo) {
this.trailerLicenseNo = trailerLicenseNo == null ? null : trailerLicenseNo.trim();
}
public String getTrailerFrameNo() {
return trailerFrameNo;
}
public void setTrailerFrameNo(String trailerFrameNo) {
this.trailerFrameNo = trailerFrameNo == null ? null : trailerFrameNo.trim();
}
public String getApproNoPic() {
return approNoPic;
}
public void setApproNoPic(String approNoPic) {
this.approNoPic = approNoPic == null ? null : approNoPic.trim();
}
public String getVeFrameNoPic() {
return veFrameNoPic;
}
public void setVeFrameNoPic(String veFrameNoPic) {
this.veFrameNoPic = veFrameNoPic == null ? null : veFrameNoPic.trim();
}
public String getMotorNoPic() {
return motorNoPic;
}
public void setMotorNoPic(String motorNoPic) {
this.motorNoPic = motorNoPic == null ? null : motorNoPic.trim();
}
public String getForeignLicensePic() {
return foreignLicensePic;
}
public void setForeignLicensePic(String foreignLicensePic) {
this.foreignLicensePic = foreignLicensePic == null ? null : foreignLicensePic.trim();
}
public String getNationality() {
return nationality;
}
public void setNationality(String nationality) {
this.nationality = nationality == null ? null : nationality.trim();
}
public String getReturnmessage() {
return returnmessage;
}
public void setReturnmessage(String returnmessage) {
this.returnmessage = returnmessage == null ? null : returnmessage.trim();
}
public String getCreateBy() {
return createBy;
}
public void setCreateBy(String createBy) {
this.createBy = createBy == null ? null : createBy.trim();
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public String getUpdateBy() {
return updateBy;
}
public void setUpdateBy(String updateBy) {
this.updateBy = updateBy == null ? null : updateBy.trim();
}
public Date getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Date updateDate) {
this.updateDate = updateDate;
}
}
\ No newline at end of file
... ...
package com.sy.service;
import com.sy.model.LandRoadVe;
public interface LandRoadVeService {
public LandRoadVe selectByFrameNo(String frameNo);
}
... ...
package com.sy.service.impl;
import com.sy.mapper.LandRoadVeMapper;
import com.sy.model.LandRoadVe;
import com.sy.service.LandRoadVeService;
import org.springframework.stereotype.Service;
@Service
public class LandRoadVeServiceImpl implements LandRoadVeService {
private LandRoadVeMapper veMapper;
@Override
public LandRoadVe selectByFrameNo(String frameNo) {
LandRoadVe ve = null;
try {
ve = veMapper.selectByFrameNo(frameNo);
}catch (Exception e){
e.printStackTrace();
}
return ve;
}
}
... ...
... ... @@ -62,7 +62,13 @@
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
<table tableName="vehicle_mainifist_relation" domainObjectName="vehicle_mainifist_relation" enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
<table tableName="gatherinfo" domainObjectName="GatherInfo" enableCountByExample="false"
<!-- <table tableName="gatherinfo" domainObjectName="GatherInfo" enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
<!-- <table tableName="land_businesstype_list" domainObjectName="LandBusinessTypeList" enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>-->
<table tableName="land_road_ve_record" domainObjectName="LandRoadVe" enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
</context>
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sy.mapper.LandRoadVeMapper">
<resultMap id="BaseResultMap" type="com.sy.model.LandRoadVe">
<id column="ID" jdbcType="VARCHAR" property="id" />
<result column="EPORT_ID" jdbcType="VARCHAR" property="eportId" />
<result column="MAIN_PORT" jdbcType="VARCHAR" property="mainPort" />
<result column="CO_CODE" jdbcType="VARCHAR" property="coCode" />
<result column="VE_TARGET_NO" jdbcType="VARCHAR" property="veTargetNo" />
<result column="DOMESTIC_LISENCE_NO" jdbcType="VARCHAR" property="domesticLisenceNo" />
<result column="DOMESTIC_LICENSE_COLOR" jdbcType="VARCHAR" property="domesticLicenseColor" />
<result column="FOREIGN_LICENSE" jdbcType="VARCHAR" property="foreignLicense" />
<result column="VE_REG_PLACE" jdbcType="VARCHAR" property="veRegPlace" />
<result column="VE_PROPERTY" jdbcType="VARCHAR" property="veProperty" />
<result column="VE_CONVEY_QUA" jdbcType="VARCHAR" property="veConveyQua" />
<result column="VE_CARD_NO" jdbcType="VARCHAR" property="veCardNo" />
<result column="VE_OWNER_NAME" jdbcType="VARCHAR" property="veOwnerName" />
<result column="VE_OWNER_NO" jdbcType="VARCHAR" property="veOwnerNo" />
<result column="OWNER_INSIDE_ADDR" jdbcType="VARCHAR" property="ownerInsideAddr" />
<result column="OWNER_INSIDE_TEL" jdbcType="VARCHAR" property="ownerInsideTel" />
<result column="VE_TYPE" jdbcType="VARCHAR" property="veType" />
<result column="BRAND" jdbcType="VARCHAR" property="brand" />
<result column="MODEL" jdbcType="VARCHAR" property="model" />
<result column="EXHAUST_CAPACITY" jdbcType="VARCHAR" property="exhaustCapacity" />
<result column="VE_FACTORY_DATE" jdbcType="DATE" property="veFactoryDate" />
<result column="VE_MOTOR_NO" jdbcType="VARCHAR" property="veMotorNo" />
<result column="VE_FRAME_NO" jdbcType="VARCHAR" property="veFrameNo" />
<result column="VE_TON" jdbcType="VARCHAR" property="veTon" />
<result column="SELF_WT" jdbcType="VARCHAR" property="selfWt" />
<result column="ALLOW_TOW_TOTAL_WT" jdbcType="VARCHAR" property="allowTowTotalWt" />
<result column="CONTAINER_INNER_LENGTH" jdbcType="VARCHAR" property="containerInnerLength" />
<result column="CONTAINER_INNER_WIDTH" jdbcType="VARCHAR" property="containerInnerWidth" />
<result column="CONTAINER_INNER_HEIGHT" jdbcType="VARCHAR" property="containerInnerHeight" />
<result column="OUTER_LENGTH" jdbcType="VARCHAR" property="outerLength" />
<result column="OUTER_WIDTH" jdbcType="VARCHAR" property="outerWidth" />
<result column="OUTER_HEIGHT" jdbcType="VARCHAR" property="outerHeight" />
<result column="VE_BODY_COLOR" jdbcType="VARCHAR" property="veBodyColor" />
<result column="OIL_BOX_CAPCITY" jdbcType="VARCHAR" property="oilBoxCapcity" />
<result column="ALLOW_VE_IE_PORT" jdbcType="VARCHAR" property="allowVeIePort" />
<result column="APPR_NO" jdbcType="VARCHAR" property="apprNo" />
<result column="APPR_PERIOD" jdbcType="DATE" property="apprPeriod" />
<result column="CURR_APPLY_BUSSINESS" jdbcType="VARCHAR" property="currApplyBussiness" />
<result column="FRONT_45C_PIC" jdbcType="VARCHAR" property="front45cPic" />
<result column="BACK_45C_PIC" jdbcType="VARCHAR" property="back45cPic" />
<result column="OIL_BOX_PIC" jdbcType="VARCHAR" property="oilBoxPic" />
<result column="VE_BOTTOM_PIC" jdbcType="VARCHAR" property="veBottomPic" />
<result column="MEMO" jdbcType="VARCHAR" property="memo" />
<result column="PROPOSER" jdbcType="VARCHAR" property="proposer" />
<result column="PROPOSE_TIME" jdbcType="TIMESTAMP" property="proposeTime" />
<result column="VE_CLASS_FLAG" jdbcType="VARCHAR" property="veClassFlag" />
<result column="OPERATION_TYPE" jdbcType="VARCHAR" property="operationType" />
<result column="TRAILER_LICENSE_NO" jdbcType="VARCHAR" property="trailerLicenseNo" />
<result column="TRAILER_FRAME_NO" jdbcType="VARCHAR" property="trailerFrameNo" />
<result column="APPRO_NO_PIC" jdbcType="VARCHAR" property="approNoPic" />
<result column="VE_FRAME_NO_PIC" jdbcType="VARCHAR" property="veFrameNoPic" />
<result column="MOTOR_NO_PIC" jdbcType="VARCHAR" property="motorNoPic" />
<result column="FOREIGN_LICENSE_PIC" jdbcType="VARCHAR" property="foreignLicensePic" />
<result column="NATIONALITY" jdbcType="VARCHAR" property="nationality" />
<result column="RETURNMESSAGE" jdbcType="VARCHAR" property="returnmessage" />
<result column="CREATE_BY" jdbcType="VARCHAR" property="createBy" />
<result column="CREATE_DATE" jdbcType="TIMESTAMP" property="createDate" />
<result column="UPDATE_BY" jdbcType="VARCHAR" property="updateBy" />
<result column="UPDATE_DATE" jdbcType="TIMESTAMP" property="updateDate" />
</resultMap>
<sql id="Base_Column_List">
ID, EPORT_ID, MAIN_PORT, CO_CODE, VE_TARGET_NO, DOMESTIC_LISENCE_NO, DOMESTIC_LICENSE_COLOR,
FOREIGN_LICENSE, VE_REG_PLACE, VE_PROPERTY, VE_CONVEY_QUA, VE_CARD_NO, VE_OWNER_NAME,
VE_OWNER_NO, OWNER_INSIDE_ADDR, OWNER_INSIDE_TEL, VE_TYPE, BRAND, MODEL, EXHAUST_CAPACITY,
VE_FACTORY_DATE, VE_MOTOR_NO, VE_FRAME_NO, VE_TON, SELF_WT, ALLOW_TOW_TOTAL_WT, CONTAINER_INNER_LENGTH,
CONTAINER_INNER_WIDTH, CONTAINER_INNER_HEIGHT, OUTER_LENGTH, OUTER_WIDTH, OUTER_HEIGHT,
VE_BODY_COLOR, OIL_BOX_CAPCITY, ALLOW_VE_IE_PORT, APPR_NO, APPR_PERIOD, CURR_APPLY_BUSSINESS,
FRONT_45C_PIC, BACK_45C_PIC, OIL_BOX_PIC, VE_BOTTOM_PIC, MEMO, PROPOSER, PROPOSE_TIME,
VE_CLASS_FLAG, OPERATION_TYPE, TRAILER_LICENSE_NO, TRAILER_FRAME_NO, APPRO_NO_PIC,
VE_FRAME_NO_PIC, MOTOR_NO_PIC, FOREIGN_LICENSE_PIC, NATIONALITY, RETURNMESSAGE, CREATE_BY,
CREATE_DATE, UPDATE_BY, UPDATE_DATE
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from land_road_ve_record
where ID = #{id,jdbcType=VARCHAR}
</select>
<select id="selectByFrameNo" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from land_road_ve_record
where DOMESTIC_LISENCE_NO = #{domesticLisenceNo,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
delete from land_road_ve_record
where ID = #{id,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.sy.model.LandRoadVe">
insert into land_road_ve_record (ID, EPORT_ID, MAIN_PORT,
CO_CODE, VE_TARGET_NO, DOMESTIC_LISENCE_NO,
DOMESTIC_LICENSE_COLOR, FOREIGN_LICENSE, VE_REG_PLACE,
VE_PROPERTY, VE_CONVEY_QUA, VE_CARD_NO,
VE_OWNER_NAME, VE_OWNER_NO, OWNER_INSIDE_ADDR,
OWNER_INSIDE_TEL, VE_TYPE, BRAND,
MODEL, EXHAUST_CAPACITY, VE_FACTORY_DATE,
VE_MOTOR_NO, VE_FRAME_NO, VE_TON,
SELF_WT, ALLOW_TOW_TOTAL_WT, CONTAINER_INNER_LENGTH,
CONTAINER_INNER_WIDTH, CONTAINER_INNER_HEIGHT,
OUTER_LENGTH, OUTER_WIDTH, OUTER_HEIGHT,
VE_BODY_COLOR, OIL_BOX_CAPCITY, ALLOW_VE_IE_PORT,
APPR_NO, APPR_PERIOD, CURR_APPLY_BUSSINESS,
FRONT_45C_PIC, BACK_45C_PIC, OIL_BOX_PIC,
VE_BOTTOM_PIC, MEMO, PROPOSER,
PROPOSE_TIME, VE_CLASS_FLAG, OPERATION_TYPE,
TRAILER_LICENSE_NO, TRAILER_FRAME_NO, APPRO_NO_PIC,
VE_FRAME_NO_PIC, MOTOR_NO_PIC, FOREIGN_LICENSE_PIC,
NATIONALITY, RETURNMESSAGE, CREATE_BY,
CREATE_DATE, UPDATE_BY, UPDATE_DATE
)
values (#{id,jdbcType=VARCHAR}, #{eportId,jdbcType=VARCHAR}, #{mainPort,jdbcType=VARCHAR},
#{coCode,jdbcType=VARCHAR}, #{veTargetNo,jdbcType=VARCHAR}, #{domesticLisenceNo,jdbcType=VARCHAR},
#{domesticLicenseColor,jdbcType=VARCHAR}, #{foreignLicense,jdbcType=VARCHAR}, #{veRegPlace,jdbcType=VARCHAR},
#{veProperty,jdbcType=VARCHAR}, #{veConveyQua,jdbcType=VARCHAR}, #{veCardNo,jdbcType=VARCHAR},
#{veOwnerName,jdbcType=VARCHAR}, #{veOwnerNo,jdbcType=VARCHAR}, #{ownerInsideAddr,jdbcType=VARCHAR},
#{ownerInsideTel,jdbcType=VARCHAR}, #{veType,jdbcType=VARCHAR}, #{brand,jdbcType=VARCHAR},
#{model,jdbcType=VARCHAR}, #{exhaustCapacity,jdbcType=VARCHAR}, #{veFactoryDate,jdbcType=DATE},
#{veMotorNo,jdbcType=VARCHAR}, #{veFrameNo,jdbcType=VARCHAR}, #{veTon,jdbcType=VARCHAR},
#{selfWt,jdbcType=VARCHAR}, #{allowTowTotalWt,jdbcType=VARCHAR}, #{containerInnerLength,jdbcType=VARCHAR},
#{containerInnerWidth,jdbcType=VARCHAR}, #{containerInnerHeight,jdbcType=VARCHAR},
#{outerLength,jdbcType=VARCHAR}, #{outerWidth,jdbcType=VARCHAR}, #{outerHeight,jdbcType=VARCHAR},
#{veBodyColor,jdbcType=VARCHAR}, #{oilBoxCapcity,jdbcType=VARCHAR}, #{allowVeIePort,jdbcType=VARCHAR},
#{apprNo,jdbcType=VARCHAR}, #{apprPeriod,jdbcType=DATE}, #{currApplyBussiness,jdbcType=VARCHAR},
#{front45cPic,jdbcType=VARCHAR}, #{back45cPic,jdbcType=VARCHAR}, #{oilBoxPic,jdbcType=VARCHAR},
#{veBottomPic,jdbcType=VARCHAR}, #{memo,jdbcType=VARCHAR}, #{proposer,jdbcType=VARCHAR},
#{proposeTime,jdbcType=TIMESTAMP}, #{veClassFlag,jdbcType=VARCHAR}, #{operationType,jdbcType=VARCHAR},
#{trailerLicenseNo,jdbcType=VARCHAR}, #{trailerFrameNo,jdbcType=VARCHAR}, #{approNoPic,jdbcType=VARCHAR},
#{veFrameNoPic,jdbcType=VARCHAR}, #{motorNoPic,jdbcType=VARCHAR}, #{foreignLicensePic,jdbcType=VARCHAR},
#{nationality,jdbcType=VARCHAR}, #{returnmessage,jdbcType=VARCHAR}, #{createBy,jdbcType=VARCHAR},
#{createDate,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR}, #{updateDate,jdbcType=TIMESTAMP}
)
</insert>
<insert id="insertSelective" parameterType="com.sy.model.LandRoadVe">
insert into land_road_ve_record
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
ID,
</if>
<if test="eportId != null">
EPORT_ID,
</if>
<if test="mainPort != null">
MAIN_PORT,
</if>
<if test="coCode != null">
CO_CODE,
</if>
<if test="veTargetNo != null">
VE_TARGET_NO,
</if>
<if test="domesticLisenceNo != null">
DOMESTIC_LISENCE_NO,
</if>
<if test="domesticLicenseColor != null">
DOMESTIC_LICENSE_COLOR,
</if>
<if test="foreignLicense != null">
FOREIGN_LICENSE,
</if>
<if test="veRegPlace != null">
VE_REG_PLACE,
</if>
<if test="veProperty != null">
VE_PROPERTY,
</if>
<if test="veConveyQua != null">
VE_CONVEY_QUA,
</if>
<if test="veCardNo != null">
VE_CARD_NO,
</if>
<if test="veOwnerName != null">
VE_OWNER_NAME,
</if>
<if test="veOwnerNo != null">
VE_OWNER_NO,
</if>
<if test="ownerInsideAddr != null">
OWNER_INSIDE_ADDR,
</if>
<if test="ownerInsideTel != null">
OWNER_INSIDE_TEL,
</if>
<if test="veType != null">
VE_TYPE,
</if>
<if test="brand != null">
BRAND,
</if>
<if test="model != null">
MODEL,
</if>
<if test="exhaustCapacity != null">
EXHAUST_CAPACITY,
</if>
<if test="veFactoryDate != null">
VE_FACTORY_DATE,
</if>
<if test="veMotorNo != null">
VE_MOTOR_NO,
</if>
<if test="veFrameNo != null">
VE_FRAME_NO,
</if>
<if test="veTon != null">
VE_TON,
</if>
<if test="selfWt != null">
SELF_WT,
</if>
<if test="allowTowTotalWt != null">
ALLOW_TOW_TOTAL_WT,
</if>
<if test="containerInnerLength != null">
CONTAINER_INNER_LENGTH,
</if>
<if test="containerInnerWidth != null">
CONTAINER_INNER_WIDTH,
</if>
<if test="containerInnerHeight != null">
CONTAINER_INNER_HEIGHT,
</if>
<if test="outerLength != null">
OUTER_LENGTH,
</if>
<if test="outerWidth != null">
OUTER_WIDTH,
</if>
<if test="outerHeight != null">
OUTER_HEIGHT,
</if>
<if test="veBodyColor != null">
VE_BODY_COLOR,
</if>
<if test="oilBoxCapcity != null">
OIL_BOX_CAPCITY,
</if>
<if test="allowVeIePort != null">
ALLOW_VE_IE_PORT,
</if>
<if test="apprNo != null">
APPR_NO,
</if>
<if test="apprPeriod != null">
APPR_PERIOD,
</if>
<if test="currApplyBussiness != null">
CURR_APPLY_BUSSINESS,
</if>
<if test="front45cPic != null">
FRONT_45C_PIC,
</if>
<if test="back45cPic != null">
BACK_45C_PIC,
</if>
<if test="oilBoxPic != null">
OIL_BOX_PIC,
</if>
<if test="veBottomPic != null">
VE_BOTTOM_PIC,
</if>
<if test="memo != null">
MEMO,
</if>
<if test="proposer != null">
PROPOSER,
</if>
<if test="proposeTime != null">
PROPOSE_TIME,
</if>
<if test="veClassFlag != null">
VE_CLASS_FLAG,
</if>
<if test="operationType != null">
OPERATION_TYPE,
</if>
<if test="trailerLicenseNo != null">
TRAILER_LICENSE_NO,
</if>
<if test="trailerFrameNo != null">
TRAILER_FRAME_NO,
</if>
<if test="approNoPic != null">
APPRO_NO_PIC,
</if>
<if test="veFrameNoPic != null">
VE_FRAME_NO_PIC,
</if>
<if test="motorNoPic != null">
MOTOR_NO_PIC,
</if>
<if test="foreignLicensePic != null">
FOREIGN_LICENSE_PIC,
</if>
<if test="nationality != null">
NATIONALITY,
</if>
<if test="returnmessage != null">
RETURNMESSAGE,
</if>
<if test="createBy != null">
CREATE_BY,
</if>
<if test="createDate != null">
CREATE_DATE,
</if>
<if test="updateBy != null">
UPDATE_BY,
</if>
<if test="updateDate != null">
UPDATE_DATE,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=VARCHAR},
</if>
<if test="eportId != null">
#{eportId,jdbcType=VARCHAR},
</if>
<if test="mainPort != null">
#{mainPort,jdbcType=VARCHAR},
</if>
<if test="coCode != null">
#{coCode,jdbcType=VARCHAR},
</if>
<if test="veTargetNo != null">
#{veTargetNo,jdbcType=VARCHAR},
</if>
<if test="domesticLisenceNo != null">
#{domesticLisenceNo,jdbcType=VARCHAR},
</if>
<if test="domesticLicenseColor != null">
#{domesticLicenseColor,jdbcType=VARCHAR},
</if>
<if test="foreignLicense != null">
#{foreignLicense,jdbcType=VARCHAR},
</if>
<if test="veRegPlace != null">
#{veRegPlace,jdbcType=VARCHAR},
</if>
<if test="veProperty != null">
#{veProperty,jdbcType=VARCHAR},
</if>
<if test="veConveyQua != null">
#{veConveyQua,jdbcType=VARCHAR},
</if>
<if test="veCardNo != null">
#{veCardNo,jdbcType=VARCHAR},
</if>
<if test="veOwnerName != null">
#{veOwnerName,jdbcType=VARCHAR},
</if>
<if test="veOwnerNo != null">
#{veOwnerNo,jdbcType=VARCHAR},
</if>
<if test="ownerInsideAddr != null">
#{ownerInsideAddr,jdbcType=VARCHAR},
</if>
<if test="ownerInsideTel != null">
#{ownerInsideTel,jdbcType=VARCHAR},
</if>
<if test="veType != null">
#{veType,jdbcType=VARCHAR},
</if>
<if test="brand != null">
#{brand,jdbcType=VARCHAR},
</if>
<if test="model != null">
#{model,jdbcType=VARCHAR},
</if>
<if test="exhaustCapacity != null">
#{exhaustCapacity,jdbcType=VARCHAR},
</if>
<if test="veFactoryDate != null">
#{veFactoryDate,jdbcType=DATE},
</if>
<if test="veMotorNo != null">
#{veMotorNo,jdbcType=VARCHAR},
</if>
<if test="veFrameNo != null">
#{veFrameNo,jdbcType=VARCHAR},
</if>
<if test="veTon != null">
#{veTon,jdbcType=VARCHAR},
</if>
<if test="selfWt != null">
#{selfWt,jdbcType=VARCHAR},
</if>
<if test="allowTowTotalWt != null">
#{allowTowTotalWt,jdbcType=VARCHAR},
</if>
<if test="containerInnerLength != null">
#{containerInnerLength,jdbcType=VARCHAR},
</if>
<if test="containerInnerWidth != null">
#{containerInnerWidth,jdbcType=VARCHAR},
</if>
<if test="containerInnerHeight != null">
#{containerInnerHeight,jdbcType=VARCHAR},
</if>
<if test="outerLength != null">
#{outerLength,jdbcType=VARCHAR},
</if>
<if test="outerWidth != null">
#{outerWidth,jdbcType=VARCHAR},
</if>
<if test="outerHeight != null">
#{outerHeight,jdbcType=VARCHAR},
</if>
<if test="veBodyColor != null">
#{veBodyColor,jdbcType=VARCHAR},
</if>
<if test="oilBoxCapcity != null">
#{oilBoxCapcity,jdbcType=VARCHAR},
</if>
<if test="allowVeIePort != null">
#{allowVeIePort,jdbcType=VARCHAR},
</if>
<if test="apprNo != null">
#{apprNo,jdbcType=VARCHAR},
</if>
<if test="apprPeriod != null">
#{apprPeriod,jdbcType=DATE},
</if>
<if test="currApplyBussiness != null">
#{currApplyBussiness,jdbcType=VARCHAR},
</if>
<if test="front45cPic != null">
#{front45cPic,jdbcType=VARCHAR},
</if>
<if test="back45cPic != null">
#{back45cPic,jdbcType=VARCHAR},
</if>
<if test="oilBoxPic != null">
#{oilBoxPic,jdbcType=VARCHAR},
</if>
<if test="veBottomPic != null">
#{veBottomPic,jdbcType=VARCHAR},
</if>
<if test="memo != null">
#{memo,jdbcType=VARCHAR},
</if>
<if test="proposer != null">
#{proposer,jdbcType=VARCHAR},
</if>
<if test="proposeTime != null">
#{proposeTime,jdbcType=TIMESTAMP},
</if>
<if test="veClassFlag != null">
#{veClassFlag,jdbcType=VARCHAR},
</if>
<if test="operationType != null">
#{operationType,jdbcType=VARCHAR},
</if>
<if test="trailerLicenseNo != null">
#{trailerLicenseNo,jdbcType=VARCHAR},
</if>
<if test="trailerFrameNo != null">
#{trailerFrameNo,jdbcType=VARCHAR},
</if>
<if test="approNoPic != null">
#{approNoPic,jdbcType=VARCHAR},
</if>
<if test="veFrameNoPic != null">
#{veFrameNoPic,jdbcType=VARCHAR},
</if>
<if test="motorNoPic != null">
#{motorNoPic,jdbcType=VARCHAR},
</if>
<if test="foreignLicensePic != null">
#{foreignLicensePic,jdbcType=VARCHAR},
</if>
<if test="nationality != null">
#{nationality,jdbcType=VARCHAR},
</if>
<if test="returnmessage != null">
#{returnmessage,jdbcType=VARCHAR},
</if>
<if test="createBy != null">
#{createBy,jdbcType=VARCHAR},
</if>
<if test="createDate != null">
#{createDate,jdbcType=TIMESTAMP},
</if>
<if test="updateBy != null">
#{updateBy,jdbcType=VARCHAR},
</if>
<if test="updateDate != null">
#{updateDate,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sy.model.LandRoadVe">
update land_road_ve_record
<set>
<if test="eportId != null">
EPORT_ID = #{eportId,jdbcType=VARCHAR},
</if>
<if test="mainPort != null">
MAIN_PORT = #{mainPort,jdbcType=VARCHAR},
</if>
<if test="coCode != null">
CO_CODE = #{coCode,jdbcType=VARCHAR},
</if>
<if test="veTargetNo != null">
VE_TARGET_NO = #{veTargetNo,jdbcType=VARCHAR},
</if>
<if test="domesticLisenceNo != null">
DOMESTIC_LISENCE_NO = #{domesticLisenceNo,jdbcType=VARCHAR},
</if>
<if test="domesticLicenseColor != null">
DOMESTIC_LICENSE_COLOR = #{domesticLicenseColor,jdbcType=VARCHAR},
</if>
<if test="foreignLicense != null">
FOREIGN_LICENSE = #{foreignLicense,jdbcType=VARCHAR},
</if>
<if test="veRegPlace != null">
VE_REG_PLACE = #{veRegPlace,jdbcType=VARCHAR},
</if>
<if test="veProperty != null">
VE_PROPERTY = #{veProperty,jdbcType=VARCHAR},
</if>
<if test="veConveyQua != null">
VE_CONVEY_QUA = #{veConveyQua,jdbcType=VARCHAR},
</if>
<if test="veCardNo != null">
VE_CARD_NO = #{veCardNo,jdbcType=VARCHAR},
</if>
<if test="veOwnerName != null">
VE_OWNER_NAME = #{veOwnerName,jdbcType=VARCHAR},
</if>
<if test="veOwnerNo != null">
VE_OWNER_NO = #{veOwnerNo,jdbcType=VARCHAR},
</if>
<if test="ownerInsideAddr != null">
OWNER_INSIDE_ADDR = #{ownerInsideAddr,jdbcType=VARCHAR},
</if>
<if test="ownerInsideTel != null">
OWNER_INSIDE_TEL = #{ownerInsideTel,jdbcType=VARCHAR},
</if>
<if test="veType != null">
VE_TYPE = #{veType,jdbcType=VARCHAR},
</if>
<if test="brand != null">
BRAND = #{brand,jdbcType=VARCHAR},
</if>
<if test="model != null">
MODEL = #{model,jdbcType=VARCHAR},
</if>
<if test="exhaustCapacity != null">
EXHAUST_CAPACITY = #{exhaustCapacity,jdbcType=VARCHAR},
</if>
<if test="veFactoryDate != null">
VE_FACTORY_DATE = #{veFactoryDate,jdbcType=DATE},
</if>
<if test="veMotorNo != null">
VE_MOTOR_NO = #{veMotorNo,jdbcType=VARCHAR},
</if>
<if test="veFrameNo != null">
VE_FRAME_NO = #{veFrameNo,jdbcType=VARCHAR},
</if>
<if test="veTon != null">
VE_TON = #{veTon,jdbcType=VARCHAR},
</if>
<if test="selfWt != null">
SELF_WT = #{selfWt,jdbcType=VARCHAR},
</if>
<if test="allowTowTotalWt != null">
ALLOW_TOW_TOTAL_WT = #{allowTowTotalWt,jdbcType=VARCHAR},
</if>
<if test="containerInnerLength != null">
CONTAINER_INNER_LENGTH = #{containerInnerLength,jdbcType=VARCHAR},
</if>
<if test="containerInnerWidth != null">
CONTAINER_INNER_WIDTH = #{containerInnerWidth,jdbcType=VARCHAR},
</if>
<if test="containerInnerHeight != null">
CONTAINER_INNER_HEIGHT = #{containerInnerHeight,jdbcType=VARCHAR},
</if>
<if test="outerLength != null">
OUTER_LENGTH = #{outerLength,jdbcType=VARCHAR},
</if>
<if test="outerWidth != null">
OUTER_WIDTH = #{outerWidth,jdbcType=VARCHAR},
</if>
<if test="outerHeight != null">
OUTER_HEIGHT = #{outerHeight,jdbcType=VARCHAR},
</if>
<if test="veBodyColor != null">
VE_BODY_COLOR = #{veBodyColor,jdbcType=VARCHAR},
</if>
<if test="oilBoxCapcity != null">
OIL_BOX_CAPCITY = #{oilBoxCapcity,jdbcType=VARCHAR},
</if>
<if test="allowVeIePort != null">
ALLOW_VE_IE_PORT = #{allowVeIePort,jdbcType=VARCHAR},
</if>
<if test="apprNo != null">
APPR_NO = #{apprNo,jdbcType=VARCHAR},
</if>
<if test="apprPeriod != null">
APPR_PERIOD = #{apprPeriod,jdbcType=DATE},
</if>
<if test="currApplyBussiness != null">
CURR_APPLY_BUSSINESS = #{currApplyBussiness,jdbcType=VARCHAR},
</if>
<if test="front45cPic != null">
FRONT_45C_PIC = #{front45cPic,jdbcType=VARCHAR},
</if>
<if test="back45cPic != null">
BACK_45C_PIC = #{back45cPic,jdbcType=VARCHAR},
</if>
<if test="oilBoxPic != null">
OIL_BOX_PIC = #{oilBoxPic,jdbcType=VARCHAR},
</if>
<if test="veBottomPic != null">
VE_BOTTOM_PIC = #{veBottomPic,jdbcType=VARCHAR},
</if>
<if test="memo != null">
MEMO = #{memo,jdbcType=VARCHAR},
</if>
<if test="proposer != null">
PROPOSER = #{proposer,jdbcType=VARCHAR},
</if>
<if test="proposeTime != null">
PROPOSE_TIME = #{proposeTime,jdbcType=TIMESTAMP},
</if>
<if test="veClassFlag != null">
VE_CLASS_FLAG = #{veClassFlag,jdbcType=VARCHAR},
</if>
<if test="operationType != null">
OPERATION_TYPE = #{operationType,jdbcType=VARCHAR},
</if>
<if test="trailerLicenseNo != null">
TRAILER_LICENSE_NO = #{trailerLicenseNo,jdbcType=VARCHAR},
</if>
<if test="trailerFrameNo != null">
TRAILER_FRAME_NO = #{trailerFrameNo,jdbcType=VARCHAR},
</if>
<if test="approNoPic != null">
APPRO_NO_PIC = #{approNoPic,jdbcType=VARCHAR},
</if>
<if test="veFrameNoPic != null">
VE_FRAME_NO_PIC = #{veFrameNoPic,jdbcType=VARCHAR},
</if>
<if test="motorNoPic != null">
MOTOR_NO_PIC = #{motorNoPic,jdbcType=VARCHAR},
</if>
<if test="foreignLicensePic != null">
FOREIGN_LICENSE_PIC = #{foreignLicensePic,jdbcType=VARCHAR},
</if>
<if test="nationality != null">
NATIONALITY = #{nationality,jdbcType=VARCHAR},
</if>
<if test="returnmessage != null">
RETURNMESSAGE = #{returnmessage,jdbcType=VARCHAR},
</if>
<if test="createBy != null">
CREATE_BY = #{createBy,jdbcType=VARCHAR},
</if>
<if test="createDate != null">
CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
</if>
<if test="updateBy != null">
UPDATE_BY = #{updateBy,jdbcType=VARCHAR},
</if>
<if test="updateDate != null">
UPDATE_DATE = #{updateDate,jdbcType=TIMESTAMP},
</if>
</set>
where ID = #{id,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.sy.model.LandRoadVe">
update land_road_ve_record
set EPORT_ID = #{eportId,jdbcType=VARCHAR},
MAIN_PORT = #{mainPort,jdbcType=VARCHAR},
CO_CODE = #{coCode,jdbcType=VARCHAR},
VE_TARGET_NO = #{veTargetNo,jdbcType=VARCHAR},
DOMESTIC_LISENCE_NO = #{domesticLisenceNo,jdbcType=VARCHAR},
DOMESTIC_LICENSE_COLOR = #{domesticLicenseColor,jdbcType=VARCHAR},
FOREIGN_LICENSE = #{foreignLicense,jdbcType=VARCHAR},
VE_REG_PLACE = #{veRegPlace,jdbcType=VARCHAR},
VE_PROPERTY = #{veProperty,jdbcType=VARCHAR},
VE_CONVEY_QUA = #{veConveyQua,jdbcType=VARCHAR},
VE_CARD_NO = #{veCardNo,jdbcType=VARCHAR},
VE_OWNER_NAME = #{veOwnerName,jdbcType=VARCHAR},
VE_OWNER_NO = #{veOwnerNo,jdbcType=VARCHAR},
OWNER_INSIDE_ADDR = #{ownerInsideAddr,jdbcType=VARCHAR},
OWNER_INSIDE_TEL = #{ownerInsideTel,jdbcType=VARCHAR},
VE_TYPE = #{veType,jdbcType=VARCHAR},
BRAND = #{brand,jdbcType=VARCHAR},
MODEL = #{model,jdbcType=VARCHAR},
EXHAUST_CAPACITY = #{exhaustCapacity,jdbcType=VARCHAR},
VE_FACTORY_DATE = #{veFactoryDate,jdbcType=DATE},
VE_MOTOR_NO = #{veMotorNo,jdbcType=VARCHAR},
VE_FRAME_NO = #{veFrameNo,jdbcType=VARCHAR},
VE_TON = #{veTon,jdbcType=VARCHAR},
SELF_WT = #{selfWt,jdbcType=VARCHAR},
ALLOW_TOW_TOTAL_WT = #{allowTowTotalWt,jdbcType=VARCHAR},
CONTAINER_INNER_LENGTH = #{containerInnerLength,jdbcType=VARCHAR},
CONTAINER_INNER_WIDTH = #{containerInnerWidth,jdbcType=VARCHAR},
CONTAINER_INNER_HEIGHT = #{containerInnerHeight,jdbcType=VARCHAR},
OUTER_LENGTH = #{outerLength,jdbcType=VARCHAR},
OUTER_WIDTH = #{outerWidth,jdbcType=VARCHAR},
OUTER_HEIGHT = #{outerHeight,jdbcType=VARCHAR},
VE_BODY_COLOR = #{veBodyColor,jdbcType=VARCHAR},
OIL_BOX_CAPCITY = #{oilBoxCapcity,jdbcType=VARCHAR},
ALLOW_VE_IE_PORT = #{allowVeIePort,jdbcType=VARCHAR},
APPR_NO = #{apprNo,jdbcType=VARCHAR},
APPR_PERIOD = #{apprPeriod,jdbcType=DATE},
CURR_APPLY_BUSSINESS = #{currApplyBussiness,jdbcType=VARCHAR},
FRONT_45C_PIC = #{front45cPic,jdbcType=VARCHAR},
BACK_45C_PIC = #{back45cPic,jdbcType=VARCHAR},
OIL_BOX_PIC = #{oilBoxPic,jdbcType=VARCHAR},
VE_BOTTOM_PIC = #{veBottomPic,jdbcType=VARCHAR},
MEMO = #{memo,jdbcType=VARCHAR},
PROPOSER = #{proposer,jdbcType=VARCHAR},
PROPOSE_TIME = #{proposeTime,jdbcType=TIMESTAMP},
VE_CLASS_FLAG = #{veClassFlag,jdbcType=VARCHAR},
OPERATION_TYPE = #{operationType,jdbcType=VARCHAR},
TRAILER_LICENSE_NO = #{trailerLicenseNo,jdbcType=VARCHAR},
TRAILER_FRAME_NO = #{trailerFrameNo,jdbcType=VARCHAR},
APPRO_NO_PIC = #{approNoPic,jdbcType=VARCHAR},
VE_FRAME_NO_PIC = #{veFrameNoPic,jdbcType=VARCHAR},
MOTOR_NO_PIC = #{motorNoPic,jdbcType=VARCHAR},
FOREIGN_LICENSE_PIC = #{foreignLicensePic,jdbcType=VARCHAR},
NATIONALITY = #{nationality,jdbcType=VARCHAR},
RETURNMESSAGE = #{returnmessage,jdbcType=VARCHAR},
CREATE_BY = #{createBy,jdbcType=VARCHAR},
CREATE_DATE = #{createDate,jdbcType=TIMESTAMP},
UPDATE_BY = #{updateBy,jdbcType=VARCHAR},
UPDATE_DATE = #{updateDate,jdbcType=TIMESTAMP}
where ID = #{id,jdbcType=VARCHAR}
</update>
</mapper>
\ No newline at end of file
... ...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sy.mapper.UserMapper">
<resultMap id="BaseResultMap" type="com.sy.model.User">
<id column="user_id" jdbcType="INTEGER" property="userId" />
<result column="user_name" jdbcType="VARCHAR" property="userName" />
<result column="password" jdbcType="VARCHAR" property="password" />
<result column="phone" jdbcType="VARCHAR" property="phone" />
</resultMap>
<sql id="Base_Column_List">
user_id, user_name, password, phone
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from user
where user_id = #{userId,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from user
where user_id = #{userId,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.sy.model.User">
insert into user (user_id, user_name, password,
phone)
values (#{userId,jdbcType=INTEGER}, #{userName,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
#{phone,jdbcType=VARCHAR})
</insert>
<insert id="insertSelective" parameterType="com.sy.model.User">
insert into user
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="userId != null">
user_id,
</if>
<if test="userName != null">
user_name,
</if>
<if test="password != null">
password,
</if>
<if test="phone != null">
phone,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="userId != null">
#{userId,jdbcType=INTEGER},
</if>
<if test="userName != null">
#{userName,jdbcType=VARCHAR},
</if>
<if test="password != null">
#{password,jdbcType=VARCHAR},
</if>
<if test="phone != null">
#{phone,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.sy.model.User">
update user
<set>
<if test="userName != null">
user_name = #{userName,jdbcType=VARCHAR},
</if>
<if test="password != null">
password = #{password,jdbcType=VARCHAR},
</if>
<if test="phone != null">
phone = #{phone,jdbcType=VARCHAR},
</if>
</set>
where user_id = #{userId,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.sy.model.User">
update user
set user_name = #{userName,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
phone = #{phone,jdbcType=VARCHAR}
where user_id = #{userId,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file