123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615 |
- package com.ruoyi.warehouseBusiness.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- 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;
- /**
- * 行号,针对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 fMblno;
- /**
- * 入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id
- */
- @Excel(name = "入库库区,存储库区ID,显示仓库 库位 库区,t_warehouse_area中的f_id")
- private Long fWarehouselocid;
- /**
- * 入(出)库日期
- */
- @Excel(name = "入", readConverterExp = "出=")
- private Date fBsdate;
- /**
- * 原始入库业务编号
- */
- @Excel(name = "原始入库业务编号")
- private String fOriginalbillno;
- /**
- * 箱号
- */
- @Excel(name = "箱号")
- private String fBoxno;
- /**
- * 箱量
- */
- @Excel(name = "箱量")
- private Long fCntqty;
- /**
- * 业务编号,保存主表的
- */
- @Excel(name = "业务编号,保存主表的")
- private String fBillno;
- /**
- * 货值
- */
- @Excel(name = "货值")
- private BigDecimal fGoodsval;
- /**
- * 箱型,20GP 4OGP
- */
- @Excel(name = "箱型,20GP 4OGP")
- private String fCntrtype;
- /**
- * 计费方式(数据字典)
- */
- @Excel(name = "计费方式(数据字典)")
- private Long fBillingway;
- /** 入库日期 */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "入库日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fOriginalbilldate;
- /**
- * 计划件数
- */
- @Excel(name = "计划件数")
- private Long fPlanqty;
- /**
- * 计划尺码
- */
- @Excel(name = "计划尺码")
- private BigDecimal fPlanvolumn;
- /**
- * 包装规格
- */
- @Excel(name = "包装规格")
- private Long fPackagespecs;
- /**
- * 仓储计费日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fChargedate;
- /**
- * 计划毛重
- */
- @Excel(name = "计划毛重")
- private BigDecimal fPlangrossweight;
- /**
- * 计划净重
- */
- @Excel(name = "计划净重")
- private BigDecimal fPlannetweight;
- /**
- * 件数
- */
- @Excel(name = "件数")
- private Long fQty;
- /**
- * 尺码
- */
- @Excel(name = "尺码")
- private BigDecimal fVolumn;
- /**
- * 毛重
- */
- @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 String fBillstatus;
- /**
- * 删除状态
- */
- private String delFlag;
- /**
- * 唛头
- */
- @Excel(name = "唛头")
- private String fMarks;
- /**
- * 库存天数(出库日期-仓储费计费日期)
- */
- @Excel(name = "库存天数(出库日期-仓储费计费日期)")
- private Long fInventoryDays;
- /**
- * 仓储费截至日期
- */
- @JsonFormat(pattern = "yyyy-MM-dd")
- @Excel(name = "仓储费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
- private Date fStorageFeeDeadline;
- /**
- * 金额
- */
- @Excel(name = "金额")
- private BigDecimal fAmt;
- /**
- * 计费天数
- */
- @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;
- 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 setfGoodsid(Long fGoodsid) {
- this.fGoodsid = fGoodsid;
- }
- public Long getfGoodsid() {
- return fGoodsid;
- }
- 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 setfBsdate(Date fBsdate) {
- this.fBsdate = fBsdate;
- }
- public Date getfBsdate() {
- return fBsdate;
- }
- public void setfOriginalbillno(String fOriginalbillno) {
- this.fOriginalbillno = fOriginalbillno;
- }
- public String getfOriginalbillno() {
- return fOriginalbillno;
- }
- 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 setfBillingway(Long fBillingway) {
- this.fBillingway = fBillingway;
- }
- public Long getfBillingway() {
- return fBillingway;
- }
- public void setfOriginalbilldate(Date fOriginalbilldate) {
- this.fOriginalbilldate = fOriginalbilldate;
- }
- public Date getfOriginalbilldate() {
- return fOriginalbilldate;
- }
- public void setfPlanqty(Long fPlanqty) {
- this.fPlanqty = fPlanqty;
- }
- public void setfBillno(String fBillno) {
- this.fBillno = fBillno;
- }
- public String getfBillno() {
- return fBillno;
- }
- public Long getfPlanqty() {
- return fPlanqty;
- }
- public void setfPlanvolumn(BigDecimal fPlanvolumn) {
- this.fPlanvolumn = fPlanvolumn;
- }
- public BigDecimal getfPlanvolumn() {
- return fPlanvolumn;
- }
- public void setfPackagespecs(Long fPackagespecs) {
- this.fPackagespecs = fPackagespecs;
- }
- public Long getfPackagespecs() {
- return fPackagespecs;
- }
- public void setfChargedate(Date fChargedate) {
- this.fChargedate = fChargedate;
- }
- public Date getfChargedate() {
- return fChargedate;
- }
- public void setfPlangrossweight(BigDecimal fPlangrossweight) {
- this.fPlangrossweight = fPlangrossweight;
- }
- public BigDecimal getfPlangrossweight() {
- return fPlangrossweight;
- }
- 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(String fBillstatus) {
- this.fBillstatus = fBillstatus;
- }
- public String 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 setfStorageFeeDeadline(Date fStorageFeeDeadline) {
- this.fStorageFeeDeadline = fStorageFeeDeadline;
- }
- public Date getfStorageFeeDeadline() {
- return fStorageFeeDeadline;
- }
- 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;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
- .append("fId", getfId())
- .append("fPid", getfPid())
- .append("fLineno", getfLineno())
- .append("fBillno", getfBillno())
- .append("fGoodsid", getfGoodsid())
- .append("fMblno", getfMblno())
- .append("fWarehouselocid", getfWarehouselocid())
- .append("fBsdate", getfBsdate())
- .append("fOriginalbillno", getfOriginalbillno())
- .append("fBoxno", getfBoxno())
- .append("fCntqty", getfCntqty())
- .append("fGoodsval", getfGoodsval())
- .append("fCntrtype", getfCntrtype())
- .append("fBillingway", getfBillingway())
- .append("fOriginalbilldate", getfOriginalbilldate())
- .append("fPlanqty", getfPlanqty())
- .append("fPlanvolumn", getfPlanvolumn())
- .append("fPackagespecs", getfPackagespecs())
- .append("fChargedate", getfChargedate())
- .append("fPlangrossweight", getfPlangrossweight())
- .append("fPlannetweight", getfPlannetweight())
- .append("fQty", getfQty())
- .append("fVolumn", getfVolumn())
- .append("fGrossweight", getfGrossweight())
- .append("fNetweight", getfNetweight())
- .append("fCntrno", getfCntrno())
- .append("fTruckno", getfTruckno())
- .append("fBillstatus", getfBillstatus())
- .append("delFlag", getDelFlag())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .append("fMarks", getfMarks())
- .append("fInventoryDays", getfInventoryDays())
- .append("fStorageFeeDeadline", getfStorageFeeDeadline())
- .append("fAmt", getfAmt())
- .append("fBillingDays", getfBillingDays())
- .append("fDriverName", getfDriverName())
- .append("fDriverTel", getfDriverTel())
- .append("fDriverIdCar", getfDriverIdCar())
- .append("fSerialNumber", getfSerialNumber())
- .append("fIsPass", getfIsPass())
- .toString();
- }
- }
|