|
@@ -1,6 +1,5 @@
|
|
|
package com.ruoyi.warehouseBusiness.domain;
|
|
package com.ruoyi.warehouseBusiness.domain;
|
|
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
@@ -118,22 +117,16 @@ public class TWhgenleg extends BaseEntity {
|
|
|
private Long fQtyc;
|
|
private Long fQtyc;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 结余件数
|
|
|
|
|
- */
|
|
|
|
|
- @Excel(name = "结余件数")
|
|
|
|
|
- private Long fQtyblc;
|
|
|
|
|
-
|
|
|
|
|
- /**
|
|
|
|
|
* 出库毛重,单位为吨
|
|
* 出库毛重,单位为吨
|
|
|
*/
|
|
*/
|
|
|
@Excel(name = "出库毛重,单位为吨")
|
|
@Excel(name = "出库毛重,单位为吨")
|
|
|
private BigDecimal fGrossweightc;
|
|
private BigDecimal fGrossweightc;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 结余毛重
|
|
|
|
|
|
|
+ * 结余件数
|
|
|
*/
|
|
*/
|
|
|
- @Excel(name = "结余毛重")
|
|
|
|
|
- private BigDecimal fGrossweightblc;
|
|
|
|
|
|
|
+ @Excel(name = "结余件数")
|
|
|
|
|
+ private Long fQtyblc;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 出库净重
|
|
* 出库净重
|
|
@@ -142,6 +135,12 @@ public class TWhgenleg extends BaseEntity {
|
|
|
private BigDecimal fNetweightc;
|
|
private BigDecimal fNetweightc;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
|
|
+ * 结余毛重
|
|
|
|
|
+ */
|
|
|
|
|
+ @Excel(name = "结余毛重")
|
|
|
|
|
+ private BigDecimal fGrossweightblc;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
* 结余净重
|
|
* 结余净重
|
|
|
*/
|
|
*/
|
|
|
@Excel(name = "结余净重")
|
|
@Excel(name = "结余净重")
|
|
@@ -162,7 +161,6 @@ public class TWhgenleg extends BaseEntity {
|
|
|
/**
|
|
/**
|
|
|
* 删除状态
|
|
* 删除状态
|
|
|
*/
|
|
*/
|
|
|
- @TableLogic
|
|
|
|
|
private String delFlag;
|
|
private String delFlag;
|
|
|
|
|
|
|
|
public void setfAccyear(Long fAccyear) {
|
|
public void setfAccyear(Long fAccyear) {
|
|
@@ -309,14 +307,6 @@ public class TWhgenleg extends BaseEntity {
|
|
|
return fQtyc;
|
|
return fQtyc;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setfQtyblc(Long fQtyblc) {
|
|
|
|
|
- this.fQtyblc = fQtyblc;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- public Long getfQtyblc() {
|
|
|
|
|
- return fQtyblc;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
public void setfGrossweightc(BigDecimal fGrossweightc) {
|
|
public void setfGrossweightc(BigDecimal fGrossweightc) {
|
|
|
this.fGrossweightc = fGrossweightc;
|
|
this.fGrossweightc = fGrossweightc;
|
|
|
}
|
|
}
|
|
@@ -325,12 +315,12 @@ public class TWhgenleg extends BaseEntity {
|
|
|
return fGrossweightc;
|
|
return fGrossweightc;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setfGrossweightblc(BigDecimal fGrossweightblc) {
|
|
|
|
|
- this.fGrossweightblc = fGrossweightblc;
|
|
|
|
|
|
|
+ public void setfQtyblc(Long fQtyblc) {
|
|
|
|
|
+ this.fQtyblc = fQtyblc;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public BigDecimal getfGrossweightblc() {
|
|
|
|
|
- return fGrossweightblc;
|
|
|
|
|
|
|
+ public Long getfQtyblc() {
|
|
|
|
|
+ return fQtyblc;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public void setfNetweightc(BigDecimal fNetweightc) {
|
|
public void setfNetweightc(BigDecimal fNetweightc) {
|
|
@@ -341,6 +331,14 @@ public class TWhgenleg extends BaseEntity {
|
|
|
return fNetweightc;
|
|
return fNetweightc;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ public void setfGrossweightblc(BigDecimal fGrossweightblc) {
|
|
|
|
|
+ this.fGrossweightblc = fGrossweightblc;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public BigDecimal getfGrossweightblc() {
|
|
|
|
|
+ return fGrossweightblc;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public void setfNetweightblc(BigDecimal fNetweightblc) {
|
|
public void setfNetweightblc(BigDecimal fNetweightblc) {
|
|
|
this.fNetweightblc = fNetweightblc;
|
|
this.fNetweightblc = fNetweightblc;
|
|
|
}
|
|
}
|
|
@@ -394,10 +392,10 @@ public class TWhgenleg extends BaseEntity {
|
|
|
.append("fNetweightd", getfNetweightd())
|
|
.append("fNetweightd", getfNetweightd())
|
|
|
.append("fVolumnc", getfVolumnc())
|
|
.append("fVolumnc", getfVolumnc())
|
|
|
.append("fQtyc", getfQtyc())
|
|
.append("fQtyc", getfQtyc())
|
|
|
- .append("fQtyblc", getfQtyblc())
|
|
|
|
|
.append("fGrossweightc", getfGrossweightc())
|
|
.append("fGrossweightc", getfGrossweightc())
|
|
|
- .append("fGrossweightblc", getfGrossweightblc())
|
|
|
|
|
|
|
+ .append("fQtyblc", getfQtyblc())
|
|
|
.append("fNetweightc", getfNetweightc())
|
|
.append("fNetweightc", getfNetweightc())
|
|
|
|
|
+ .append("fGrossweightblc", getfGrossweightblc())
|
|
|
.append("fNetweightblc", getfNetweightblc())
|
|
.append("fNetweightblc", getfNetweightblc())
|
|
|
.append("fCntrno", getfCntrno())
|
|
.append("fCntrno", getfCntrno())
|
|
|
.append("fStatus", getfStatus())
|
|
.append("fStatus", getfStatus())
|
|
@@ -409,4 +407,4 @@ public class TWhgenleg extends BaseEntity {
|
|
|
.append("remark", getRemark())
|
|
.append("remark", getRemark())
|
|
|
.toString();
|
|
.toString();
|
|
|
}
|
|
}
|
|
|
-}
|
|
|
|
|
|
|
+}
|