|
@@ -4,8 +4,7 @@ import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
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 lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
@@ -16,6 +15,7 @@ import java.util.Date;
|
|
|
* @author ruoyi
|
|
|
* @date 2020-12-11
|
|
|
*/
|
|
|
+@Data
|
|
|
public class TWarehouseDetails extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
@@ -32,6 +32,12 @@ public class TWarehouseDetails extends BaseEntity {
|
|
|
private String fBillno;
|
|
|
|
|
|
/**
|
|
|
+ * 报关号 取入库的f_customsdeclartion
|
|
|
+ */
|
|
|
+ @Excel(name = "报关号")
|
|
|
+ private String fCustomsdeclartion;
|
|
|
+
|
|
|
+ /**
|
|
|
* 原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno
|
|
|
*/
|
|
|
@Excel(name = "原始业务编号,入库时和f_billno 相同,出库 取入库的f_originalbillno")
|
|
@@ -50,6 +56,18 @@ public class TWarehouseDetails extends BaseEntity {
|
|
|
private Long fBsdeptid;
|
|
|
|
|
|
/**
|
|
|
+ * 联系人
|
|
|
+ */
|
|
|
+ @Excel(name = "业务所属部门")
|
|
|
+ private String fContacts;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 电话
|
|
|
+ */
|
|
|
+ @Excel(name = "业务所属部门")
|
|
|
+ private String fTel;
|
|
|
+
|
|
|
+ /**
|
|
|
* 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
|
|
|
*/
|
|
|
@Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
|
|
@@ -81,6 +99,12 @@ public class TWarehouseDetails extends BaseEntity {
|
|
|
private Long fWarehouseid;
|
|
|
|
|
|
/**
|
|
|
+ * 仓管人
|
|
|
+ */
|
|
|
+ @Excel(name = "仓库人")
|
|
|
+ private String fStorekeeper;
|
|
|
+
|
|
|
+ /**
|
|
|
* 入(出)库日期
|
|
|
*/
|
|
|
@Excel(name = "入", readConverterExp = "出=")
|
|
@@ -129,6 +153,12 @@ public class TWarehouseDetails extends BaseEntity {
|
|
|
private BigDecimal fNetweight;
|
|
|
|
|
|
/**
|
|
|
+ * 贸易方式(数据字典),对应t_sbu
|
|
|
+ */
|
|
|
+ @Excel(name = "经营单位(客户表)")
|
|
|
+ private Long fSbu;
|
|
|
+
|
|
|
+ /**
|
|
|
* 贸易方式(数据字典),对应t_trademodels
|
|
|
*/
|
|
|
@Excel(name = "贸易方式(数据字典),对应t_trademodels ")
|
|
@@ -212,303 +242,4 @@ public class TWarehouseDetails extends BaseEntity {
|
|
|
*/
|
|
|
@TableLogic
|
|
|
private String delFlag;
|
|
|
-
|
|
|
- public void setfId(Long fId) {
|
|
|
- this.fId = fId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfId() {
|
|
|
- return fId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBillno(String fBillno) {
|
|
|
- this.fBillno = fBillno;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfBillno() {
|
|
|
- return fBillno;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfOriginalbillno(String fOriginalbillno) {
|
|
|
- this.fOriginalbillno = fOriginalbillno;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfOriginalbillno() {
|
|
|
- return fOriginalbillno;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfDeptid(Long fDeptid) {
|
|
|
- this.fDeptid = fDeptid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfDeptid() {
|
|
|
- return fDeptid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBsdeptid(Long fBsdeptid) {
|
|
|
- this.fBsdeptid = fBsdeptid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfBsdeptid() {
|
|
|
- return fBsdeptid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfCorpid(Long fCorpid) {
|
|
|
- this.fCorpid = fCorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfCorpid() {
|
|
|
- return fCorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfTocorpid(Long fTocorpid) {
|
|
|
- this.fTocorpid = fTocorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfTocorpid() {
|
|
|
- return fTocorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfStltypeid(Long fStltypeid) {
|
|
|
- this.fStltypeid = fStltypeid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfStltypeid() {
|
|
|
- return fStltypeid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBscorpno(String fBscorpno) {
|
|
|
- this.fBscorpno = fBscorpno;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfBscorpno() {
|
|
|
- return fBscorpno;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfWarehouseid(Long fWarehouseid) {
|
|
|
- this.fWarehouseid = fWarehouseid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfWarehouseid() {
|
|
|
- return fWarehouseid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBsdate(Date fBsdate) {
|
|
|
- this.fBsdate = fBsdate;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getfBsdate() {
|
|
|
- return fBsdate;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfPlanqty(Long fPlanqty) {
|
|
|
- this.fPlanqty = fPlanqty;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfPlanqty() {
|
|
|
- return fPlanqty;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfPlangrossweight(BigDecimal fPlangrossweight) {
|
|
|
- this.fPlangrossweight = fPlangrossweight;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getfPlangrossweight() {
|
|
|
- return fPlangrossweight;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfPlanvolumn(BigDecimal fPlanvolumn) {
|
|
|
- this.fPlanvolumn = fPlanvolumn;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getfPlanvolumn() {
|
|
|
- return fPlanvolumn;
|
|
|
- }
|
|
|
-
|
|
|
- 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 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 setfTrademodeid(Long fTrademodeid) {
|
|
|
- this.fTrademodeid = fTrademodeid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfTrademodeid() {
|
|
|
- return fTrademodeid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfVolumn(BigDecimal fVolumn) {
|
|
|
- this.fVolumn = fVolumn;
|
|
|
- }
|
|
|
-
|
|
|
- public BigDecimal getfVolumn() {
|
|
|
- return fVolumn;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfFeetunit(String fFeetunit) {
|
|
|
- this.fFeetunit = fFeetunit;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfFeetunit() {
|
|
|
- return fFeetunit;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfMblno(String fMblno) {
|
|
|
- this.fMblno = fMblno;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfMblno() {
|
|
|
- return fMblno;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfVslvoy(String fVslvoy) {
|
|
|
- this.fVslvoy = fVslvoy;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfVslvoy() {
|
|
|
- return fVslvoy;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfEta(Date fEta) {
|
|
|
- this.fEta = fEta;
|
|
|
- }
|
|
|
-
|
|
|
- public Date getfEta() {
|
|
|
- return fEta;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfCustomno(String fCustomno) {
|
|
|
- this.fCustomno = fCustomno;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfCustomno() {
|
|
|
- return fCustomno;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfIfweigh(String fIfweigh) {
|
|
|
- this.fIfweigh = fIfweigh;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfIfweigh() {
|
|
|
- return fIfweigh;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfIfpledge(String fIfpledge) {
|
|
|
- this.fIfpledge = fIfpledge;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfIfpledge() {
|
|
|
- return fIfpledge;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfIfdamage(String fIfdamage) {
|
|
|
- this.fIfdamage = fIfdamage;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfIfdamage() {
|
|
|
- return fIfdamage;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBankcorpid(Long fBankcorpid) {
|
|
|
- this.fBankcorpid = fBankcorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getfBankcorpid() {
|
|
|
- return fBankcorpid;
|
|
|
- }
|
|
|
-
|
|
|
- public void setfBilltype(String fBilltype) {
|
|
|
- this.fBilltype = fBilltype;
|
|
|
- }
|
|
|
-
|
|
|
- public String getfBilltype() {
|
|
|
- return fBilltype;
|
|
|
- }
|
|
|
-
|
|
|
- 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;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("fId", getfId())
|
|
|
- .append("fBillno", getfBillno())
|
|
|
- .append("fOriginalbillno", getfOriginalbillno())
|
|
|
- .append("fDeptid", getfDeptid())
|
|
|
- .append("fBsdeptid", getfBsdeptid())
|
|
|
- .append("fCorpid", getfCorpid())
|
|
|
- .append("fTocorpid", getfTocorpid())
|
|
|
- .append("fStltypeid", getfStltypeid())
|
|
|
- .append("fBscorpno", getfBscorpno())
|
|
|
- .append("fWarehouseid", getfWarehouseid())
|
|
|
- .append("fBsdate", getfBsdate())
|
|
|
- .append("fPlanqty", getfPlanqty())
|
|
|
- .append("fPlangrossweight", getfPlangrossweight())
|
|
|
- .append("fPlanvolumn", getfPlanvolumn())
|
|
|
- .append("fPlannetweight", getfPlannetweight())
|
|
|
- .append("fQty", getfQty())
|
|
|
- .append("fGrossweight", getfGrossweight())
|
|
|
- .append("fNetweight", getfNetweight())
|
|
|
- .append("fTrademodeid", getfTrademodeid())
|
|
|
- .append("fVolumn", getfVolumn())
|
|
|
- .append("fFeetunit", getfFeetunit())
|
|
|
- .append("fMblno", getfMblno())
|
|
|
- .append("fVslvoy", getfVslvoy())
|
|
|
- .append("fEta", getfEta())
|
|
|
- .append("fCustomno", getfCustomno())
|
|
|
- .append("fIfweigh", getfIfweigh())
|
|
|
- .append("fIfpledge", getfIfpledge())
|
|
|
- .append("fIfdamage", getfIfdamage())
|
|
|
- .append("fBankcorpid", getfBankcorpid())
|
|
|
- .append("fBilltype", getfBilltype())
|
|
|
- .append("fBillstatus", getfBillstatus())
|
|
|
- .append("delFlag", getDelFlag())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("remark", getRemark())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|