1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009 |
- package com.ruoyi.warehouseBusiness.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * 仓库明细从表对象 t_warehousebillsitems
- *
- * @author ruoyi
- * @date 2021-01-15
- */
- public class TWarehousebillsitems extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * $column.columnComment
- */
- private Long fId;
- /**
- * PID,对应主表id
- */
- @Excel(name = "PID,对应主表id")
- private Long fPid;
- /** 来源id */
- @Excel(name = "来源id")
- private Long fSrcid;
- /** 来源日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "来源日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fSrcBsdate;
- /**
- * 行号,针对pid顺序排列,1,2,3,4,
- */
- @Excel(name = "行号,针对pid顺序排列,1,2,3,4,")
- private Long fLineno;
- /**
- * 货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
- */
- @Excel(name = "货物品名,存储id 显示名称 t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name")
- private Long fGoodsid;
- /**
- * 业务编号,保存主表的
- */
- @Excel(name = "业务编号,保存主表的")
- private String fBillno;
- /**
- * 发货方
- */
- @Excel(name = "发货方")
- private String fShipper;
- /**
- * 提单号
- */
- @Excel(name = "提单号")
- private String fMblno;
- /**
- * 入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id
- */
- @Excel(name = "入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id")
- private Long fWarehouselocid;
- /** 调拨库区 */
- @Excel(name = "调拨库区")
- private Long fTransferWarehouselocid;
- /**
- * 原始入库业务编号
- */
- @Excel(name = "原始入库业务编号")
- private String fOriginalbillno;
- /**
- * 入(出)库日期
- */
- @Excel(name = "入", readConverterExp = "出=")
- private Date fBsdate;
- /**
- * 箱号
- */
- @Excel(name = "箱号")
- private String fBoxno;
- /**
- * 箱量
- */
- @Excel(name = "箱量")
- private Long fCntqty;
- /**
- * 货值
- */
- @Excel(name = "货值")
- private BigDecimal fGoodsval;
- /**
- * 箱型,20GP 4OGP
- */
- @Excel(name = "箱型,20GP 4OGP")
- private String fCntrtype;
- /**
- * 计划件数
- */
- @Excel(name = "计划件数")
- private Long fPlanqty;
- /**
- * 计费方式(数据字典)
- */
- @Excel(name = "计费方式(数据字典)")
- private Long fBillingway;
- /**
- * 计划尺码
- */
- @Excel(name = "计划尺码")
- private BigDecimal fPlanvolumn;
- /**
- * 入库日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "入库日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fOriginalbilldate;
- /**
- * 包装规格
- */
- @Excel(name = "包装规格")
- private String fPackagespecs;
- /**
- * 电子标签
- */
- private String fElabel;
- /**
- * 计划毛重
- */
- @Excel(name = "计划毛重")
- private BigDecimal fPlangrossweight;
- /**
- * 仓储计费日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fChargedate;
- /**
- * 计划净重
- */
- @Excel(name = "计划净重")
- private BigDecimal fPlannetweight;
- /**
- * 件数
- */
- @Excel(name = "件数")
- private Long fQty;
- /**
- * 尺码
- */
- @Excel(name = "尺码")
- private BigDecimal fVolumn = BigDecimal.ZERO;
- /**
- * 毛重
- */
- @Excel(name = "毛重")
- private BigDecimal fGrossweight;
- /**
- * 净重
- */
- @Excel(name = "净重")
- private BigDecimal fNetweight;
- /**
- * 箱号
- */
- @Excel(name = "箱号")
- private String fCntrno;
- /**
- * 车号
- */
- @Excel(name = "车号")
- private String fTruckno;
- /**
- * 状态,N 入(出)库中,T入(出)库完成,状态为完成不能删除,状态变化,用邮件、微信通知客户。
- */
- @Excel(name = "状态,N 入", readConverterExp = "出=")
- private Long fBillstatus;
- /**
- * 删除状态
- */
- private String delFlag;
- /**
- * 唛头
- */
- @Excel(name = "唛头")
- private String fMarks;
- /**
- * 溢短重
- */
- @Excel(name = "溢短重")
- private BigDecimal fActualWeight = BigDecimal.ZERO;
- /**
- * 库存天数(出库日期-仓储费计费日期)
- */
- @Excel(name = "库存天数(出库日期-仓储费计费日期)")
- private Long fInventoryDays;
- /**
- * 金额
- */
- @Excel(name = "金额")
- private BigDecimal fAmt;
- /** 仓储费截至日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "仓储费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fStorageFeeDeadline;
- /**
- * 计费天数
- */
- @Excel(name = "计费天数")
- private Long fBillingDays;
- /**
- * 司机名
- */
- @Excel(name = "司机名")
- private String fDriverName;
- /**
- * 司机电话
- */
- @Excel(name = "司机电话")
- private String fDriverTel;
- /**
- * 司机身份证
- */
- @Excel(name = "司机身份证")
- private String fDriverIdCar;
- /**
- * 流水号
- */
- @Excel(name = "流水号")
- private String fSerialNumber;
- /**
- * 是否已放行(T为放行、F未放行)
- */
- @Excel(name = "是否已放行(T为放行、F未放行)")
- private String fIsPass;
- /**
- * 单据类型(数据字典)SJRK(入库) SJCK(实际出库) CKDB(调拨) HQZY(货权转移)
- */
- @Excel(name = "单据类型(数据字典)SJRK", readConverterExp = "入=库")
- private String fBilltype;
- /**
- * 计费数量
- */
- @Excel(name = "计费数量")
- private BigDecimal fBillingQty;
- /**
- * 仓储费计费截至日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "仓储费计费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fBillingDeadline;
- /** 业务类型(存汉字的,用来选择 产地 规格 品牌) */
- @Excel(name = "业务类型(存汉字的,用来选择 产地 规格 品牌)")
- private Long fBusinessType;
- /** 是否入库0入总帐;1不计入总账(用于入库时候选择场地直装) */
- @Excel(name = "是否入库")
- private Long fIsInventory;
- /** 仓库/库区/库位 */
- @Excel(name = "仓库/库区/库位")
- private String fWarehouseInformation;
- /** 原始仓库/库区/库位 */
- @Excel(name = "仓库/库区/库位")
- private String fOrgwarehouseInformation;
- /** 劳务公司 */
- @Excel(name = "劳务公司")
- private Long fLabour;
- /** 车队 */
- @Excel(name = "车队")
- private Long fFleet;
- /** 装卸工 */
- @Excel(name = "装卸工")
- private String fStevedore;
- /** 装卸方式LNTYPE(人工 机械) */
- @Excel(name = "装卸方式LNTYPE(人工 机械)")
- private Long fLntype;
- /** 叉车工 */
- @Excel(name = "叉车工")
- private String fForkliftman;
- /** 库内箱号 */
- @Excel(name = "库内箱号")
- private String fLocalcntrno;
- /** 封号 */
- @Excel(name = "封号")
- private String fSealno;
- /** 明细审批状态 */
- @Excel(name = "明细审批状态")
- private Long fItemstatus;
- /** 现箱号 */
- @Excel(name = "现箱号")
- private String fNowCarton;
- /**
- * 备注
- */
- private String remark;
- /** 车辆类型 */
- @Excel(name = "车辆类型")
- private Long fCartypeId;
- private String timeStartBsdate;
- private String timeEndBsdate;
- //报关单号
- private String fCustomno;
- //修改日期
- private Date bsdate;
- /** 是否计算仓储费(应对出库单是否计算过仓储费) */
- @Excel(name = "是否计算仓储费(应对出库单是否计算过仓储费)")
- private String isCalculateStorageFees;
- @TableField(exist = false)
- private Long fTocorpid;
- public String getfElabel() {
- return fElabel;
- }
- public void setfElabel(String fElabel) {
- this.fElabel = fElabel;
- }
- public void setfSrcBsdate(Date fSrcBsdate)
- {
- this.fSrcBsdate = fSrcBsdate;
- }
- public Date getfSrcBsdate()
- {
- return fSrcBsdate;
- }
- public Long getfTocorpid() {
- return fTocorpid;
- }
- public void setfTocorpid(Long fTocorpid) {
- this.fTocorpid = fTocorpid;
- }
- public String getIsCalculateStorageFees() {
- return isCalculateStorageFees;
- }
- public void setIsCalculateStorageFees(String isCalculateStorageFees) {
- this.isCalculateStorageFees = isCalculateStorageFees;
- }
- public Date getBsdate() {
- return bsdate;
- }
- public void setBsdate(Date bsdate) {
- this.bsdate = bsdate;
- }
- /**
- * 场地直装,D:入库明细 C 出库明细
- */
- private String fDc;
- public BigDecimal getfActualWeight() {
- return fActualWeight;
- }
- public void setfActualWeight(BigDecimal fActualWeight) {
- this.fActualWeight = fActualWeight;
- }
- public String getfDc() {
- return fDc;
- }
- public void setfDc(String fDc) {
- this.fDc = fDc;
- }
- public Long getfCartypeId() {
- return fCartypeId;
- }
- public void setfCartypeId(Long fCartypeId) {
- this.fCartypeId = fCartypeId;
- }
- public String getfNowCarton() {
- return fNowCarton;
- }
- public void setfNowCarton(String fNowCarton) {
- this.fNowCarton = fNowCarton;
- }
- public String getfCustomno() {
- return fCustomno;
- }
- public void setfCustomno(String fCustomno) {
- this.fCustomno = fCustomno;
- }
- public Long getfLabour() {
- return fLabour;
- }
- public void setfLabour(Long fLabour) {
- this.fLabour = fLabour;
- }
- public Long getfFleet() {
- return fFleet;
- }
- public void setfFleet(Long fFleet) {
- this.fFleet = fFleet;
- }
- public String getfStevedore() {
- return fStevedore;
- }
- public void setfStevedore(String fStevedore) {
- this.fStevedore = fStevedore;
- }
- @Override
- public String getRemark() {
- return remark;
- }
- @Override
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getTimeStartBsdate() {
- return timeStartBsdate;
- }
- public void setTimeStartBsdate(String timeStartBsdate) {
- this.timeStartBsdate = timeStartBsdate;
- }
- public String getTimeEndBsdate() {
- return timeEndBsdate;
- }
- public void setTimeEndBsdate(String timeEndBsdate) {
- this.timeEndBsdate = timeEndBsdate;
- }
- public void setfId(Long fId) {
- this.fId = fId;
- }
- public Long getfId() {
- return fId;
- }
- public void setfPid(Long fPid) {
- this.fPid = fPid;
- }
- public Long getfPid() {
- return fPid;
- }
- public void setfLineno(Long fLineno) {
- this.fLineno = fLineno;
- }
- public Long getfLineno() {
- return fLineno;
- }
- public void setfSrcid(Long fSrcid) {
- this.fSrcid = fSrcid;
- }
- public Long getfSrcid() {
- return fSrcid;
- }
- public void setfGoodsid(Long fGoodsid) {
- this.fGoodsid = fGoodsid;
- }
- public Long getfGoodsid() {
- return fGoodsid;
- }
- public void setfBillno(String fBillno) {
- this.fBillno = fBillno;
- }
- public String getfBillno() {
- return fBillno;
- }
- public void setfShipper(String fShipper) {
- this.fShipper = fShipper;
- }
- public String getfShipper() {
- return fShipper;
- }
- public void setfMblno(String fMblno) {
- this.fMblno = fMblno;
- }
- public String getfMblno() {
- return fMblno;
- }
- public void setfWarehouselocid(Long fWarehouselocid) {
- this.fWarehouselocid = fWarehouselocid;
- }
- public Long getfWarehouselocid() {
- return fWarehouselocid;
- }
- public void setfTransferWarehouselocid(Long fTransferWarehouselocid) {
- this.fTransferWarehouselocid = fTransferWarehouselocid;
- }
- public Long getfTransferWarehouselocid() {
- return fTransferWarehouselocid;
- }
- public void setfStorageFeeDeadline(Date fStorageFeeDeadline) {
- this.fStorageFeeDeadline = fStorageFeeDeadline;
- }
- public Date getfStorageFeeDeadline() {
- return fStorageFeeDeadline;
- }
- public void setfOriginalbillno(String fOriginalbillno) {
- this.fOriginalbillno = fOriginalbillno;
- }
- public String getfOriginalbillno() {
- return fOriginalbillno;
- }
- public void setfBsdate(Date fBsdate) {
- this.fBsdate = fBsdate;
- }
- public Date getfBsdate() {
- return fBsdate;
- }
- public void setfBoxno(String fBoxno) {
- this.fBoxno = fBoxno;
- }
- public String getfBoxno() {
- return fBoxno;
- }
- public void setfCntqty(Long fCntqty) {
- this.fCntqty = fCntqty;
- }
- public Long getfCntqty() {
- return fCntqty;
- }
- public void setfGoodsval(BigDecimal fGoodsval) {
- this.fGoodsval = fGoodsval;
- }
- public BigDecimal getfGoodsval() {
- return fGoodsval;
- }
- public void setfCntrtype(String fCntrtype) {
- this.fCntrtype = fCntrtype;
- }
- public String getfCntrtype() {
- return fCntrtype;
- }
- public void setfPlanqty(Long fPlanqty) {
- this.fPlanqty = fPlanqty;
- }
- public Long getfPlanqty() {
- return fPlanqty;
- }
- public void setfBillingway(Long fBillingway) {
- this.fBillingway = fBillingway;
- }
- public Long getfBillingway() {
- return fBillingway;
- }
- public void setfPlanvolumn(BigDecimal fPlanvolumn) {
- this.fPlanvolumn = fPlanvolumn;
- }
- public BigDecimal getfPlanvolumn() {
- return fPlanvolumn;
- }
- public void setfOriginalbilldate(Date fOriginalbilldate) {
- this.fOriginalbilldate = fOriginalbilldate;
- }
- public Date getfOriginalbilldate() {
- return fOriginalbilldate;
- }
- public void setfPackagespecs(String fPackagespecs) {
- this.fPackagespecs = fPackagespecs;
- }
- public String getfPackagespecs() {
- return fPackagespecs;
- }
- public void setfPlangrossweight(BigDecimal fPlangrossweight) {
- this.fPlangrossweight = fPlangrossweight;
- }
- public BigDecimal getfPlangrossweight() {
- return fPlangrossweight;
- }
- public void setfChargedate(Date fChargedate) {
- this.fChargedate = fChargedate;
- }
- public Date getfChargedate() {
- return fChargedate;
- }
- public void setfPlannetweight(BigDecimal fPlannetweight) {
- this.fPlannetweight = fPlannetweight;
- }
- public BigDecimal getfPlannetweight() {
- return fPlannetweight;
- }
- public void setfQty(Long fQty) {
- this.fQty = fQty;
- }
- public Long getfQty() {
- return fQty;
- }
- public void setfVolumn(BigDecimal fVolumn) {
- this.fVolumn = fVolumn;
- }
- public BigDecimal getfVolumn() {
- return fVolumn;
- }
- public void setfGrossweight(BigDecimal fGrossweight) {
- this.fGrossweight = fGrossweight;
- }
- public BigDecimal getfGrossweight() {
- return fGrossweight;
- }
- public void setfNetweight(BigDecimal fNetweight) {
- this.fNetweight = fNetweight;
- }
- public BigDecimal getfNetweight() {
- return fNetweight;
- }
- public void setfCntrno(String fCntrno) {
- this.fCntrno = fCntrno;
- }
- public String getfCntrno() {
- return fCntrno;
- }
- public void setfTruckno(String fTruckno) {
- this.fTruckno = fTruckno;
- }
- public String getfTruckno() {
- return fTruckno;
- }
- public void setfBillstatus(Long fBillstatus) {
- this.fBillstatus = fBillstatus;
- }
- public Long getfBillstatus() {
- return fBillstatus;
- }
- public void setDelFlag(String delFlag) {
- this.delFlag = delFlag;
- }
- public String getDelFlag() {
- return delFlag;
- }
- public void setfMarks(String fMarks) {
- this.fMarks = fMarks;
- }
- public String getfMarks() {
- return fMarks;
- }
- public void setfInventoryDays(Long fInventoryDays) {
- this.fInventoryDays = fInventoryDays;
- }
- public Long getfInventoryDays() {
- return fInventoryDays;
- }
- public void setfAmt(BigDecimal fAmt) {
- this.fAmt = fAmt;
- }
- public BigDecimal getfAmt() {
- return fAmt;
- }
- public void setfBillingDays(Long fBillingDays) {
- this.fBillingDays = fBillingDays;
- }
- public Long getfBillingDays() {
- return fBillingDays;
- }
- public void setfDriverName(String fDriverName) {
- this.fDriverName = fDriverName;
- }
- public String getfDriverName() {
- return fDriverName;
- }
- public void setfDriverTel(String fDriverTel) {
- this.fDriverTel = fDriverTel;
- }
- public String getfDriverTel() {
- return fDriverTel;
- }
- public void setfDriverIdCar(String fDriverIdCar) {
- this.fDriverIdCar = fDriverIdCar;
- }
- public String getfDriverIdCar() {
- return fDriverIdCar;
- }
- public void setfSerialNumber(String fSerialNumber) {
- this.fSerialNumber = fSerialNumber;
- }
- public String getfSerialNumber() {
- return fSerialNumber;
- }
- public void setfIsPass(String fIsPass) {
- this.fIsPass = fIsPass;
- }
- public String getfIsPass() {
- return fIsPass;
- }
- public void setfBilltype(String fBilltype) {
- this.fBilltype = fBilltype;
- }
- public String getfBilltype() {
- return fBilltype;
- }
- public void setfBillingQty(BigDecimal fBillingQty) {
- this.fBillingQty = fBillingQty;
- }
- public BigDecimal getfBillingQty() {
- return fBillingQty;
- }
- public void setfBillingDeadline(Date fBillingDeadline) {
- this.fBillingDeadline = fBillingDeadline;
- }
- public Date getfBillingDeadline() {
- return fBillingDeadline;
- }
- public void setfBusinessType(Long fBusinessType) {
- this.fBusinessType = fBusinessType;
- }
- public Long getfBusinessType() {
- return fBusinessType;
- }
- public void setfIsInventory(Long fIsInventory) {
- this.fIsInventory = fIsInventory;
- }
- public Long getfIsInventory() {
- return fIsInventory;
- }
- public String getfWarehouseInformation() {
- return fWarehouseInformation;
- }
- public void setfWarehouseInformation(String fWarehouseInformation) {
- this.fWarehouseInformation = fWarehouseInformation;
- }
- public Long getfLntype() {
- return fLntype;
- }
- public void setfLntype(Long fLntype) {
- this.fLntype = fLntype;
- }
- public String getfForkliftman() {
- return fForkliftman;
- }
- public void setfForkliftman(String fForkliftman) {
- this.fForkliftman = fForkliftman;
- }
- public String getfLocalcntrno() {
- return fLocalcntrno;
- }
- public void setfLocalcntrno(String fLocalcntrno) {
- this.fLocalcntrno = fLocalcntrno;
- }
- public String getfSealno() {
- return fSealno;
- }
- public void setfSealno(String fSealno) {
- this.fSealno = fSealno;
- }
- public String getfOrgwarehouseInformation() {
- return fOrgwarehouseInformation;
- }
- public void setfOrgwarehouseInformation(String fOrgwarehouseInformation) {
- this.fOrgwarehouseInformation = fOrgwarehouseInformation;
- }
- public Long getfItemstatus() {
- return fItemstatus;
- }
- public void setfItemstatus(Long fItemstatus) {
- this.fItemstatus = fItemstatus;
- }
- @Override
- public String toString() {
- return "TWarehousebillsitems{" +
- "fId=" + fId +
- ", fPid=" + fPid +
- ", fSrcid=" + fSrcid +
- ", fLineno=" + fLineno +
- ", fGoodsid=" + fGoodsid +
- ", fBillno='" + fBillno + '\'' +
- ", fMblno='" + fMblno + '\'' +
- ", fWarehouselocid=" + fWarehouselocid +
- ", fTransferWarehouselocid=" + fTransferWarehouselocid +
- ", fOriginalbillno='" + fOriginalbillno + '\'' +
- ", fBsdate=" + fBsdate +
- ", fBoxno='" + fBoxno + '\'' +
- ", fCntqty=" + fCntqty +
- ", fGoodsval=" + fGoodsval +
- ", fCntrtype='" + fCntrtype + '\'' +
- ", fPlanqty=" + fPlanqty +
- ", fBillingway=" + fBillingway +
- ", fPlanvolumn=" + fPlanvolumn +
- ", fOriginalbilldate=" + fOriginalbilldate +
- ", fPackagespecs='" + fPackagespecs + '\'' +
- ", fPlangrossweight=" + fPlangrossweight +
- ", fChargedate=" + fChargedate +
- ", fPlannetweight=" + fPlannetweight +
- ", fQty=" + fQty +
- ", fVolumn=" + fVolumn +
- ", fGrossweight=" + fGrossweight +
- ", fNetweight=" + fNetweight +
- ", fCntrno='" + fCntrno + '\'' +
- ", fTruckno='" + fTruckno + '\'' +
- ", fBillstatus=" + fBillstatus +
- ", delFlag='" + delFlag + '\'' +
- ", fMarks='" + fMarks + '\'' +
- ", fInventoryDays=" + fInventoryDays +
- ", fAmt=" + fAmt +
- ", fStorageFeeDeadline=" + fStorageFeeDeadline +
- ", fBillingDays=" + fBillingDays +
- ", fDriverName='" + fDriverName + '\'' +
- ", fDriverTel='" + fDriverTel + '\'' +
- ", fDriverIdCar='" + fDriverIdCar + '\'' +
- ", fSerialNumber='" + fSerialNumber + '\'' +
- ", fIsPass='" + fIsPass + '\'' +
- ", fBilltype='" + fBilltype + '\'' +
- ", fBillingQty=" + fBillingQty +
- ", fBillingDeadline=" + fBillingDeadline +
- ", fBusinessType=" + fBusinessType +
- ", fIsInventory=" + fIsInventory +
- ", fWarehouseInformation='" + fWarehouseInformation + '\'' +
- ", fOrgwarehouseInformation='" + fOrgwarehouseInformation + '\'' +
- ", fLabour=" + fLabour +
- ", fFleet=" + fFleet +
- ", fStevedore='" + fStevedore + '\'' +
- ", fLntype=" + fLntype +
- ", fForkliftman='" + fForkliftman + '\'' +
- ", fLocalcntrno='" + fLocalcntrno + '\'' +
- ", fSealno='" + fSealno + '\'' +
- ", remark='" + remark + '\'' +
- ", timeStartBsdate='" + timeStartBsdate + '\'' +
- ", timeEndBsdate='" + timeEndBsdate + '\'' +
- ", fNowCarton='" + fNowCarton + '\'' +
- ", fCartypeId='" + fCartypeId + '\'' +
- '}';
- }
- }
|