|
|
/**
|
|
|
* Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
|
|
|
*/
|
|
|
package com.thinkgem.jeesite.modules.bw.entity.dct;
|
|
|
|
|
|
import org.hibernate.validator.constraints.Length;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.thinkgem.jeesite.common.persistence.DataEntity;
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
|
import com.thoughtworks.xstream.annotations.XStreamConverter;
|
|
|
import com.thoughtworks.xstream.annotations.XStreamImplicit;
|
|
|
|
|
|
/**
|
|
|
* 实体Entity
|
|
|
* @author zhangfan
|
|
|
* @version 2018-10-16
|
|
|
*/
|
|
|
public class PortManifestHead extends DataEntity<PortManifestHead> {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
@XStreamAlias("BASE_ID")
|
|
|
private String baseid; // 核放单编号
|
|
|
@XStreamAlias("TRADE_CODE")
|
|
|
private String tradecode; // 客户海关代码
|
|
|
@XStreamAlias("TRADE_NAME")
|
|
|
private String tradename; // 客户海关名称
|
|
|
@XStreamAlias("ICCODE")
|
|
|
private String iccode; // IC卡号
|
|
|
@XStreamAlias("CAR_NO")
|
|
|
private String carno; // 车牌号
|
|
|
@XStreamAlias("BIZ_TYPE")
|
|
|
private String biztype; // 核放单类型(报关/清关/转关/特殊/扣留)
|
|
|
@XStreamAlias("BIZ_MODE")
|
|
|
private String bizmode; // 特殊类型(业务模式)
|
|
|
@XStreamAlias("FROM_PORT")
|
|
|
private String fromport; // 起始地
|
|
|
@XStreamAlias("TO_PORT")
|
|
|
private String toport; // 目的地
|
|
|
@XStreamAlias("IE_MARK")
|
|
|
private String iemark; // 进出区标志
|
|
|
@XStreamAlias("I_E_FLAG")
|
|
|
private String ieflag; // 进出口标志(I/E)
|
|
|
@XStreamAlias("TOTAL_WEIGHT")
|
|
|
private Double totalweight; // 总重
|
|
|
@XStreamAlias("TOTAL_AMOUNT")
|
|
|
private Double totalamount; // 总件数
|
|
|
@XStreamAlias("STATUS")
|
|
|
private String status; // 核放单状态
|
|
|
@XStreamAlias("B_STATUS")
|
|
|
private String bstatus; // 核放单下单证状态
|
|
|
@XStreamAlias("M_STATUS")
|
|
|
private String mstatus; // 核放单人工操作状态
|
|
|
@XStreamAlias("FIT_MARK")
|
|
|
private String fitmark; // 核放单查验标志
|
|
|
@XStreamAlias("PORT_STATUS")
|
|
|
private String portstatus; // 核放单过卡口状态
|
|
|
@XStreamAlias("BILLNO")
|
|
|
private String billno; // 提运单号(预留暂不用)
|
|
|
@XStreamAlias("GOODS_MARK")
|
|
|
private String goodsmark; // 货物品名
|
|
|
@XStreamAlias("FACT_WEIGHT")
|
|
|
private String factweight; // 实际重量(地磅称重)
|
|
|
@XStreamAlias("GOODS_WT")
|
|
|
private Double goodswt; // 货重(单证汇总)
|
|
|
@XStreamAlias("CAR_WT")
|
|
|
private Double carwt; // 车自重
|
|
|
@XStreamAlias("GATE_ID")
|
|
|
private String gateid; // IC卡采集号
|
|
|
@XStreamAlias("DET_TYPE")
|
|
|
private String dettype; // 扣留类型
|
|
|
@XStreamAlias("F_CONTA_TYPE")
|
|
|
private String fcontatype; // 前箱型
|
|
|
@XStreamAlias("F_CONTA_NO")
|
|
|
private String fcontano; // 前箱号
|
|
|
@XStreamAlias("F_CONTA_WT")
|
|
|
private String fcontawt; // 前箱重
|
|
|
@XStreamAlias("F_SEAL_NO")
|
|
|
private String fsealno; // 前箱封号
|
|
|
@XStreamAlias("A_CONTA_TYPE")
|
|
|
private String acontatype; // 后箱型
|
|
|
@XStreamAlias("A_CONTA_NO")
|
|
|
private String acontano; // 后箱号
|
|
|
@XStreamAlias("A_CONTA_WT")
|
|
|
private Double acontawt; // 后箱重
|
|
|
@XStreamAlias("A_SEAL_NO")
|
|
|
private String asealno; // 后箱封号
|
|
|
@XStreamAlias("CAR_TYPE")
|
|
|
private String cartype; // 车架类型
|
|
|
@XStreamAlias("CAR_J_NO")
|
|
|
private String carjno; // 车架编号
|
|
|
@XStreamAlias("CAR_J_WT")
|
|
|
private Double carjwt; // 车架重
|
|
|
@XStreamAlias("PORT_MAN")
|
|
|
private String portman; // 卡口确认人
|
|
|
@XStreamAlias("PORT_DATE")
|
|
|
@XStreamConverter(value=XStreamDateConverter.class)
|
|
|
private Date portdate; // 过最终卡口时间
|
|
|
@XStreamAlias("CUSTOM_CODE")
|
|
|
private String customcode; // 海关编码
|
|
|
@XStreamAlias("FROM_DATE")
|
|
|
@XStreamConverter(value=XStreamDateConverter.class)
|
|
|
private Date fromdate; // 出卡口时间
|
|
|
@XStreamAlias("END_DATE")
|
|
|
@XStreamConverter(value=XStreamDateConverter.class)
|
|
|
private Date endDate; // 进卡口时间
|
|
|
@XStreamAlias("FROM_WT")
|
|
|
private Double fromwt; // 出卡口磅重
|
|
|
@XStreamAlias("TO_WT")
|
|
|
private Double towt; // 进卡口磅重
|
|
|
@XStreamAlias("CHECK_RESULT")
|
|
|
private String checkresult; // 预警比对文字描述
|
|
|
@XStreamAlias("CHECK_TIME")
|
|
|
private String checktime; // 超时预警类型(1:超时)
|
|
|
@XStreamAlias("CHECK_WT")
|
|
|
private String checkwt; // 重量预警类型(WT_Error)
|
|
|
@XStreamAlias("IF_LDFLAG")
|
|
|
private String ifldflag; // 是否区区联动(Y)同一个库
|
|
|
@XStreamAlias("TIMEOUT_FLAG")
|
|
|
private String timeoutflag; // 货物出起始地卡口未入目的地卡口,人工处理标志(Y表示已处理)
|
|
|
@XStreamAlias("TIMEOUT_MSG")
|
|
|
private String timeoutmsg; // 货物超时人工审批意见
|
|
|
@XStreamAlias("TIMEOUT_PERSON")
|
|
|
private String timeoutperson; // 货物超时审批人
|
|
|
@XStreamAlias("LINK_TYPE")
|
|
|
private String linktype; // 区港联动,综保区发送的核放单号
|
|
|
@XStreamAlias("LINK_BASE_ID")
|
|
|
private String linkbaseid; // 联动业务,两区拼货(货站)标记
|
|
|
@XStreamAlias("CON_TYPE")
|
|
|
private String contype; // 集装箱J/散货S
|
|
|
@XStreamAlias("LCL_CONTA")
|
|
|
private String lclconta; // 拆拼箱业务
|
|
|
@XStreamAlias("MEMO")
|
|
|
private String memo; // 备注
|
|
|
@XStreamAlias("FLAG1")
|
|
|
private Double flag1; // FLAG
|
|
|
@XStreamAlias("FLAG2")
|
|
|
private Double flag2; // FLAG
|
|
|
@XStreamAlias("FLAG3")
|
|
|
@XStreamConverter(value=XStreamDateConverter.class)
|
|
|
private Date flag3; // FLAG
|
|
|
@XStreamAlias("FLAG4")
|
|
|
private String flag4; // FLAG
|
|
|
@XStreamAlias("FLAG5")
|
|
|
private String flag5; // FLAG
|
|
|
@XStreamAlias("REMARK1")
|
|
|
private String remark1; // 扩展字段
|
|
|
@XStreamAlias("REMARK2")
|
|
|
private String remark2; // 扩展字段
|
|
|
@XStreamAlias("REMARK3")
|
|
|
@XStreamConverter(value=XStreamDateConverter.class)
|
|
|
private Date remark3; // 扩展字段
|
|
|
@XStreamAlias("REMARK4")
|
|
|
private Double remark4; // 扩展字段
|
|
|
@XStreamAlias("REMARK5")
|
|
|
private String remark5; // 扩展字段
|
|
|
@XStreamImplicit(itemFieldName="PORT_MANIFEST_BODY")
|
|
|
private List<PortManifestBody> body;
|
|
|
|
|
|
@XStreamAlias("PORT_MANIFEST_HEAD_STAT")
|
|
|
private PortManifestHeadStat stat;
|
|
|
|
|
|
public PortManifestHead() {
|
|
|
super();
|
|
|
}
|
|
|
|
|
|
public PortManifestHead(String id){
|
|
|
super(id);
|
|
|
}
|
|
|
|
|
|
public List<PortManifestBody> getBody() {
|
|
|
return body;
|
|
|
}
|
|
|
|
|
|
public void setBody(List<PortManifestBody> body) {
|
|
|
this.body = body;
|
|
|
}
|
|
|
|
|
|
public PortManifestHeadStat getStat() {
|
|
|
return stat;
|
|
|
}
|
|
|
|
|
|
public void setStat(PortManifestHeadStat stat) {
|
|
|
this.stat = stat;
|
|
|
}
|
|
|
|
|
|
|
|
|
@Length(min=1, max=36, message="核放单编号长度必须介于 1 和 36 之间")
|
|
|
public String getBaseid() {
|
|
|
return baseid;
|
|
|
}
|
|
|
|
|
|
public void setBaseid(String baseid) {
|
|
|
this.baseid = baseid;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=10, message="客户海关代码长度必须介于 0 和 10 之间")
|
|
|
public String getTradecode() {
|
|
|
return tradecode;
|
|
|
}
|
|
|
|
|
|
public void setTradecode(String tradecode) {
|
|
|
this.tradecode = tradecode;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=255, message="客户海关名称长度必须介于 0 和 255 之间")
|
|
|
public String getTradename() {
|
|
|
return tradename;
|
|
|
}
|
|
|
|
|
|
public void setTradename(String tradename) {
|
|
|
this.tradename = tradename;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="IC卡号长度必须介于 0 和 20 之间")
|
|
|
public String getIccode() {
|
|
|
return iccode;
|
|
|
}
|
|
|
|
|
|
public void setIccode(String iccode) {
|
|
|
this.iccode = iccode;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="车牌号长度必须介于 0 和 50 之间")
|
|
|
public String getCarno() {
|
|
|
return carno;
|
|
|
}
|
|
|
|
|
|
public void setCarno(String carno) {
|
|
|
this.carno = carno;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=10, message="核放单类型(报关/清关/转关/特殊/扣留)长度必须介于 0 和 10 之间")
|
|
|
public String getBiztype() {
|
|
|
return biztype;
|
|
|
}
|
|
|
|
|
|
public void setBiztype(String biztype) {
|
|
|
this.biztype = biztype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=10, message="特殊类型(业务模式)长度必须介于 0 和 10 之间")
|
|
|
public String getBizmode() {
|
|
|
return bizmode;
|
|
|
}
|
|
|
|
|
|
public void setBizmode(String bizmode) {
|
|
|
this.bizmode = bizmode;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="起始地长度必须介于 0 和 20 之间")
|
|
|
public String getFromport() {
|
|
|
return fromport;
|
|
|
}
|
|
|
|
|
|
public void setFromport(String fromport) {
|
|
|
this.fromport = fromport;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="目的地长度必须介于 0 和 20 之间")
|
|
|
public String getToport() {
|
|
|
return toport;
|
|
|
}
|
|
|
|
|
|
public void setToport(String toport) {
|
|
|
this.toport = toport;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="进出区标志长度必须介于 0 和 50 之间")
|
|
|
public String getIemark() {
|
|
|
return iemark;
|
|
|
}
|
|
|
|
|
|
public void setIemark(String iemark) {
|
|
|
this.iemark = iemark;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=1, message="进出口标志(I/E)长度必须介于 0 和 1 之间")
|
|
|
public String getIeflag() {
|
|
|
return ieflag;
|
|
|
}
|
|
|
|
|
|
public void setIeflag(String ieflag) {
|
|
|
this.ieflag = ieflag;
|
|
|
}
|
|
|
|
|
|
public Double getTotalweight() {
|
|
|
return totalweight;
|
|
|
}
|
|
|
|
|
|
public void setTotalweight(Double totalweight) {
|
|
|
this.totalweight = totalweight;
|
|
|
}
|
|
|
|
|
|
public Double getTotalamount() {
|
|
|
return totalamount;
|
|
|
}
|
|
|
|
|
|
public void setTotalamount(Double totalamount) {
|
|
|
this.totalamount = totalamount;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="核放单状态长度必须介于 0 和 20 之间")
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(String status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="核放单下单证状态长度必须介于 0 和 20 之间")
|
|
|
public String getBstatus() {
|
|
|
return bstatus;
|
|
|
}
|
|
|
|
|
|
public void setBstatus(String bstatus) {
|
|
|
this.bstatus = bstatus;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="核放单人工操作状态长度必须介于 0 和 20 之间")
|
|
|
public String getMstatus() {
|
|
|
return mstatus;
|
|
|
}
|
|
|
|
|
|
public void setMstatus(String mstatus) {
|
|
|
this.mstatus = mstatus;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="核放单查验标志长度必须介于 0 和 20 之间")
|
|
|
public String getFitmark() {
|
|
|
return fitmark;
|
|
|
}
|
|
|
|
|
|
public void setFitmark(String fitmark) {
|
|
|
this.fitmark = fitmark;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="核放单过卡口状态长度必须介于 0 和 20 之间")
|
|
|
public String getPortstatus() {
|
|
|
return portstatus;
|
|
|
}
|
|
|
|
|
|
public void setPortstatus(String portstatus) {
|
|
|
this.portstatus = portstatus;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=36, message="提运单号(预留暂不用)长度必须介于 0 和 36 之间")
|
|
|
public String getBillno() {
|
|
|
return billno;
|
|
|
}
|
|
|
|
|
|
public void setBillno(String billno) {
|
|
|
this.billno = billno;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=400, message="货物品名长度必须介于 0 和 400 之间")
|
|
|
public String getGoodsmark() {
|
|
|
return goodsmark;
|
|
|
}
|
|
|
|
|
|
public void setGoodsmark(String goodsmark) {
|
|
|
this.goodsmark = goodsmark;
|
|
|
}
|
|
|
|
|
|
public String getFactweight() {
|
|
|
return factweight;
|
|
|
}
|
|
|
|
|
|
public void setFactweight(String factweight) {
|
|
|
this.factweight = factweight;
|
|
|
}
|
|
|
|
|
|
public Double getGoodswt() {
|
|
|
return goodswt;
|
|
|
}
|
|
|
|
|
|
public void setGoodswt(Double goodswt) {
|
|
|
this.goodswt = goodswt;
|
|
|
}
|
|
|
|
|
|
public Double getCarwt() {
|
|
|
return carwt;
|
|
|
}
|
|
|
|
|
|
public void setCarwt(Double carwt) {
|
|
|
this.carwt = carwt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=30, message="IC卡采集号长度必须介于 0 和 30 之间")
|
|
|
public String getGateid() {
|
|
|
return gateid;
|
|
|
}
|
|
|
|
|
|
public void setGateid(String gateid) {
|
|
|
this.gateid = gateid;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=4, message="扣留类型长度必须介于 0 和 4 之间")
|
|
|
public String getDettype() {
|
|
|
return dettype;
|
|
|
}
|
|
|
|
|
|
public void setDettype(String dettype) {
|
|
|
this.dettype = dettype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="前箱型长度必须介于 0 和 20 之间")
|
|
|
public String getFcontatype() {
|
|
|
return fcontatype;
|
|
|
}
|
|
|
|
|
|
public void setFcontatype(String fcontatype) {
|
|
|
this.fcontatype = fcontatype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="前箱号长度必须介于 0 和 50 之间")
|
|
|
public String getFcontano() {
|
|
|
return fcontano;
|
|
|
}
|
|
|
|
|
|
public void setFcontano(String fcontano) {
|
|
|
this.fcontano = fcontano;
|
|
|
}
|
|
|
|
|
|
public String getFcontawt() {
|
|
|
return fcontawt;
|
|
|
}
|
|
|
|
|
|
public void setFcontawt(String fcontawt) {
|
|
|
this.fcontawt = fcontawt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=100, message="前箱封号长度必须介于 0 和 100 之间")
|
|
|
public String getFsealno() {
|
|
|
return fsealno;
|
|
|
}
|
|
|
|
|
|
public void setFsealno(String fsealno) {
|
|
|
this.fsealno = fsealno;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="后箱型长度必须介于 0 和 20 之间")
|
|
|
public String getAcontatype() {
|
|
|
return acontatype;
|
|
|
}
|
|
|
|
|
|
public void setAcontatype(String acontatype) {
|
|
|
this.acontatype = acontatype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="后箱号长度必须介于 0 和 50 之间")
|
|
|
public String getAcontano() {
|
|
|
return acontano;
|
|
|
}
|
|
|
|
|
|
public void setAcontano(String acontano) {
|
|
|
this.acontano = acontano;
|
|
|
}
|
|
|
|
|
|
public Double getAcontawt() {
|
|
|
return acontawt;
|
|
|
}
|
|
|
|
|
|
public void setAcontawt(Double acontawt) {
|
|
|
this.acontawt = acontawt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=100, message="后箱封号长度必须介于 0 和 100 之间")
|
|
|
public String getAsealno() {
|
|
|
return asealno;
|
|
|
}
|
|
|
|
|
|
public void setAsealno(String asealno) {
|
|
|
this.asealno = asealno;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=100, message="车架类型长度必须介于 0 和 100 之间")
|
|
|
public String getCartype() {
|
|
|
return cartype;
|
|
|
}
|
|
|
|
|
|
public void setCartype(String cartype) {
|
|
|
this.cartype = cartype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="车架编号长度必须介于 0 和 20 之间")
|
|
|
public String getCarjno() {
|
|
|
return carjno;
|
|
|
}
|
|
|
|
|
|
public void setCarjno(String carjno) {
|
|
|
this.carjno = carjno;
|
|
|
}
|
|
|
|
|
|
public Double getCarjwt() {
|
|
|
return carjwt;
|
|
|
}
|
|
|
|
|
|
public void setCarjwt(Double carjwt) {
|
|
|
this.carjwt = carjwt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="卡口确认人长度必须介于 0 和 20 之间")
|
|
|
public String getPortman() {
|
|
|
return portman;
|
|
|
}
|
|
|
|
|
|
public void setPortman(String portman) {
|
|
|
this.portman = portman;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
public Date getPortdate() {
|
|
|
return portdate;
|
|
|
}
|
|
|
|
|
|
public void setPortdate(Date portdate) {
|
|
|
this.portdate = portdate;
|
|
|
}
|
|
|
|
|
|
|
|
|
@Length(min=0, max=10, message="海关编码长度必须介于 0 和 10 之间")
|
|
|
public String getCustomcode() {
|
|
|
return customcode;
|
|
|
}
|
|
|
|
|
|
public void setCustomcode(String customcode) {
|
|
|
this.customcode = customcode;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
public Date getFromdate() {
|
|
|
return fromdate;
|
|
|
}
|
|
|
|
|
|
public void setFromdate(Date fromdate) {
|
|
|
this.fromdate = fromdate;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
public Date getEndDate() {
|
|
|
return endDate;
|
|
|
}
|
|
|
|
|
|
public void setEndDate(Date endDate) {
|
|
|
this.endDate = endDate;
|
|
|
}
|
|
|
|
|
|
public Double getFromwt() {
|
|
|
return fromwt;
|
|
|
}
|
|
|
|
|
|
public void setFromwt(Double fromwt) {
|
|
|
this.fromwt = fromwt;
|
|
|
}
|
|
|
|
|
|
public Double getTowt() {
|
|
|
return towt;
|
|
|
}
|
|
|
|
|
|
public void setTowt(Double towt) {
|
|
|
this.towt = towt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=200, message="预警比对文字描述长度必须介于 0 和 200 之间")
|
|
|
public String getCheckresult() {
|
|
|
return checkresult;
|
|
|
}
|
|
|
|
|
|
public void setCheckresult(String checkresult) {
|
|
|
this.checkresult = checkresult;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="超时预警类型(1:超时)长度必须介于 0 和 20 之间")
|
|
|
public String getChecktime() {
|
|
|
return checktime;
|
|
|
}
|
|
|
|
|
|
public void setChecktime(String checktime) {
|
|
|
this.checktime = checktime;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="重量预警类型(WT_Error)长度必须介于 0 和 20 之间")
|
|
|
public String getCheckwt() {
|
|
|
return checkwt;
|
|
|
}
|
|
|
|
|
|
public void setCheckwt(String checkwt) {
|
|
|
this.checkwt = checkwt;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=2, message="是否区区联动(Y)同一个库长度必须介于 0 和 2 之间")
|
|
|
public String getIfldflag() {
|
|
|
return ifldflag;
|
|
|
}
|
|
|
|
|
|
public void setIfldflag(String ifldflag) {
|
|
|
this.ifldflag = ifldflag;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=1, message="货物出起始地卡口未入目的地卡口,人工处理标志(Y表示已处理)长度必须介于 0 和 1 之间")
|
|
|
public String getTimeoutflag() {
|
|
|
return timeoutflag;
|
|
|
}
|
|
|
|
|
|
public void setTimeoutflag(String timeoutflag) {
|
|
|
this.timeoutflag = timeoutflag;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=500, message="货物超时人工审批意见长度必须介于 0 和 500 之间")
|
|
|
public String getTimeoutmsg() {
|
|
|
return timeoutmsg;
|
|
|
}
|
|
|
|
|
|
public void setTimeoutmsg(String timeoutmsg) {
|
|
|
this.timeoutmsg = timeoutmsg;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="货物超时审批人长度必须介于 0 和 20 之间")
|
|
|
public String getTimeoutperson() {
|
|
|
return timeoutperson;
|
|
|
}
|
|
|
|
|
|
public void setTimeoutperson(String timeoutperson) {
|
|
|
this.timeoutperson = timeoutperson;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="区港联动,综保区发送的核放单号长度必须介于 0 和 50 之间")
|
|
|
public String getLinktype() {
|
|
|
return linktype;
|
|
|
}
|
|
|
|
|
|
public void setLinktype(String linktype) {
|
|
|
this.linktype = linktype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="联动业务,两区拼货(货站)标记长度必须介于 0 和 20 之间")
|
|
|
public String getLinkbaseid() {
|
|
|
return linkbaseid;
|
|
|
}
|
|
|
|
|
|
public void setLinkbaseid(String linkbaseid) {
|
|
|
this.linkbaseid = linkbaseid;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="集装箱J/散货S长度必须介于 0 和 50 之间")
|
|
|
public String getContype() {
|
|
|
return contype;
|
|
|
}
|
|
|
|
|
|
public void setContype(String contype) {
|
|
|
this.contype = contype;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=50, message="拆拼箱业务长度必须介于 0 和 50 之间")
|
|
|
public String getLclconta() {
|
|
|
return lclconta;
|
|
|
}
|
|
|
|
|
|
public void setLclconta(String lclconta) {
|
|
|
this.lclconta = lclconta;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=100, message="备注长度必须介于 0 和 100 之间")
|
|
|
public String getMemo() {
|
|
|
return memo;
|
|
|
}
|
|
|
|
|
|
public void setMemo(String memo) {
|
|
|
this.memo = memo;
|
|
|
}
|
|
|
|
|
|
public Double getFlag1() {
|
|
|
return flag1;
|
|
|
}
|
|
|
|
|
|
public void setFlag1(Double flag1) {
|
|
|
this.flag1 = flag1;
|
|
|
}
|
|
|
|
|
|
public Double getFlag2() {
|
|
|
return flag2;
|
|
|
}
|
|
|
|
|
|
public void setFlag2(Double flag2) {
|
|
|
this.flag2 = flag2;
|
|
|
}
|
|
|
|
|
|
public Date getFlag3() {
|
|
|
return flag3;
|
|
|
}
|
|
|
|
|
|
public void setFlag3(Date flag3) {
|
|
|
this.flag3 = flag3;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="FLAG长度必须介于 0 和 20 之间")
|
|
|
public String getFlag4() {
|
|
|
return flag4;
|
|
|
}
|
|
|
|
|
|
public void setFlag4(String flag4) {
|
|
|
this.flag4 = flag4;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=100, message="FLAG长度必须介于 0 和 100 之间")
|
|
|
public String getFlag5() {
|
|
|
return flag5;
|
|
|
}
|
|
|
|
|
|
public void setFlag5(String flag5) {
|
|
|
this.flag5 = flag5;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="扩展字段长度必须介于 0 和 20 之间")
|
|
|
public String getRemark1() {
|
|
|
return remark1;
|
|
|
}
|
|
|
|
|
|
public void setRemark1(String remark1) {
|
|
|
this.remark1 = remark1;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="扩展字段长度必须介于 0 和 20 之间")
|
|
|
public String getRemark2() {
|
|
|
return remark2;
|
|
|
}
|
|
|
|
|
|
public void setRemark2(String remark2) {
|
|
|
this.remark2 = remark2;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
public Date getRemark3() {
|
|
|
return remark3;
|
|
|
}
|
|
|
|
|
|
public void setRemark3(Date remark3) {
|
|
|
this.remark3 = remark3;
|
|
|
}
|
|
|
|
|
|
public Double getRemark4() {
|
|
|
return remark4;
|
|
|
}
|
|
|
|
|
|
public void setRemark4(Double remark4) {
|
|
|
this.remark4 = remark4;
|
|
|
}
|
|
|
|
|
|
@Length(min=0, max=20, message="扩展字段长度必须介于 0 和 20 之间")
|
|
|
public String getRemark5() {
|
|
|
return remark5;
|
|
|
}
|
|
|
|
|
|
public void setRemark5(String remark5) {
|
|
|
this.remark5 = remark5;
|
|
|
}
|
|
|
|
|
|
} |
|
|
\ No newline at end of file |
...
|
...
|
|