123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- package com.ruoyi.warehouseBusiness.domain;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- 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;
- /**
- * 库存总账对象 t_whgenleg
- *
- * @author ruoyi
- * @date 2020-12-11
- */
- public class TWhgenleg extends BaseEntity {
- private static final long serialVersionUID = 1L;
- /**
- * 年
- */
- private Long fAccyear;
- /**
- * $column.columnComment
- */
- private Long fId;
- /**
- * 月
- */
- private Long fAccmonth;
- /**
- * 客户id,t_corps 中的name
- */
- private Long fCorpid;
- /**
- * 提单号
- */
- private String fMblno;
- /**
- * 原始入库业务编号
- */
- @Excel(name = "原始入库业务编号")
- private String fOriginalbillno;
- /**
- * 库区,显示仓库 库位 库区
- */
- private Long fWarehouseLocationid;
- /**
- * 货物品名,t_goods 中的no或 name,模糊查找选择后,存储f_id,显示name
- */
- private Long fGoodsid;
- /**
- * 贸易方式,对应t_trademodels name
- */
- private Long fTrademodeid;
- /**
- * 上期件数
- */
- @Excel(name = "上期件数")
- private Long fPreqty;
- /**
- * 上期毛重,单位为吨,保留6位小数
- */
- @Excel(name = "上期毛重,单位为吨,保留6位小数")
- private BigDecimal fPregrossweight;
- /**
- * 上期净重,
- */
- @Excel(name = "上期净重,")
- private BigDecimal fPrenetweight;
- /**
- * 入库件数
- */
- @Excel(name = "入库件数")
- private Long fQtyd;
- /**
- * 入库尺码
- */
- @Excel(name = "入库尺码")
- private BigDecimal fVolumnd;
- /**
- * 入库毛重
- */
- @Excel(name = "入库毛重")
- private BigDecimal fGrossweightd;
- /**
- * 入库净重
- */
- @Excel(name = "入库净重")
- private BigDecimal fNetweightd;
- /**
- * 出口尺码
- */
- @Excel(name = "出口尺码")
- private BigDecimal fVolumnc;
- /**
- * 出库件数
- */
- @Excel(name = "出库件数")
- private Long fQtyc;
- /**
- * 结余件数
- */
- @Excel(name = "结余件数")
- private Long fQtyblc;
- /**
- * 出库毛重,单位为吨
- */
- @Excel(name = "出库毛重,单位为吨")
- private BigDecimal fGrossweightc;
- /**
- * 结余毛重
- */
- @Excel(name = "结余毛重")
- private BigDecimal fGrossweightblc;
- /**
- * 出库净重
- */
- @Excel(name = "出库净重")
- private BigDecimal fNetweightc;
- /**
- * 结余净重
- */
- @Excel(name = "结余净重")
- private BigDecimal fNetweightblc;
- /**
- * 箱号
- */
- @Excel(name = "箱号")
- private String fCntrno;
- /**
- * 状态,默认 T ,正常T 停用F 下拉选择
- */
- @Excel(name = "状态,默认 T ,正常T 停用F 下拉选择")
- private String fStatus;
- /**
- * 删除状态
- */
- @TableLogic
- private String delFlag;
- public void setfAccyear(Long fAccyear) {
- this.fAccyear = fAccyear;
- }
- public Long getfAccyear() {
- return fAccyear;
- }
- public void setfId(Long fId) {
- this.fId = fId;
- }
- public Long getfId() {
- return fId;
- }
- public void setfAccmonth(Long fAccmonth) {
- this.fAccmonth = fAccmonth;
- }
- public Long getfAccmonth() {
- return fAccmonth;
- }
- public void setfCorpid(Long fCorpid) {
- this.fCorpid = fCorpid;
- }
- public Long getfCorpid() {
- return fCorpid;
- }
- public void setfMblno(String fMblno) {
- this.fMblno = fMblno;
- }
- public String getfMblno() {
- return fMblno;
- }
- public void setfOriginalbillno(String fOriginalbillno) {
- this.fOriginalbillno = fOriginalbillno;
- }
- public String getfOriginalbillno() {
- return fOriginalbillno;
- }
- public void setfWarehouseLocationid(Long fWarehouseLocationid) {
- this.fWarehouseLocationid = fWarehouseLocationid;
- }
- public Long getfWarehouseLocationid() {
- return fWarehouseLocationid;
- }
- public void setfGoodsid(Long fGoodsid) {
- this.fGoodsid = fGoodsid;
- }
- public Long getfGoodsid() {
- return fGoodsid;
- }
- public void setfTrademodeid(Long fTrademodeid) {
- this.fTrademodeid = fTrademodeid;
- }
- public Long getfTrademodeid() {
- return fTrademodeid;
- }
- public void setfPreqty(Long fPreqty) {
- this.fPreqty = fPreqty;
- }
- public Long getfPreqty() {
- return fPreqty;
- }
- public void setfPregrossweight(BigDecimal fPregrossweight) {
- this.fPregrossweight = fPregrossweight;
- }
- public BigDecimal getfPregrossweight() {
- return fPregrossweight;
- }
- public void setfPrenetweight(BigDecimal fPrenetweight) {
- this.fPrenetweight = fPrenetweight;
- }
- public BigDecimal getfPrenetweight() {
- return fPrenetweight;
- }
- public void setfQtyd(Long fQtyd) {
- this.fQtyd = fQtyd;
- }
- public Long getfQtyd() {
- return fQtyd;
- }
- public void setfVolumnd(BigDecimal fVolumnd) {
- this.fVolumnd = fVolumnd;
- }
- public BigDecimal getfVolumnd() {
- return fVolumnd;
- }
- public void setfGrossweightd(BigDecimal fGrossweightd) {
- this.fGrossweightd = fGrossweightd;
- }
- public BigDecimal getfGrossweightd() {
- return fGrossweightd;
- }
- public void setfNetweightd(BigDecimal fNetweightd) {
- this.fNetweightd = fNetweightd;
- }
- public BigDecimal getfNetweightd() {
- return fNetweightd;
- }
- public void setfVolumnc(BigDecimal fVolumnc) {
- this.fVolumnc = fVolumnc;
- }
- public BigDecimal getfVolumnc() {
- return fVolumnc;
- }
- public void setfQtyc(Long fQtyc) {
- this.fQtyc = fQtyc;
- }
- public Long getfQtyc() {
- return fQtyc;
- }
- public void setfQtyblc(Long fQtyblc) {
- this.fQtyblc = fQtyblc;
- }
- public Long getfQtyblc() {
- return fQtyblc;
- }
- public void setfGrossweightc(BigDecimal fGrossweightc) {
- this.fGrossweightc = fGrossweightc;
- }
- public BigDecimal getfGrossweightc() {
- return fGrossweightc;
- }
- public void setfGrossweightblc(BigDecimal fGrossweightblc) {
- this.fGrossweightblc = fGrossweightblc;
- }
- public BigDecimal getfGrossweightblc() {
- return fGrossweightblc;
- }
- public void setfNetweightc(BigDecimal fNetweightc) {
- this.fNetweightc = fNetweightc;
- }
- public BigDecimal getfNetweightc() {
- return fNetweightc;
- }
- public void setfNetweightblc(BigDecimal fNetweightblc) {
- this.fNetweightblc = fNetweightblc;
- }
- public BigDecimal getfNetweightblc() {
- return fNetweightblc;
- }
- public void setfCntrno(String fCntrno) {
- this.fCntrno = fCntrno;
- }
- public String getfCntrno() {
- return fCntrno;
- }
- public void setfStatus(String fStatus) {
- this.fStatus = fStatus;
- }
- public String getfStatus() {
- return fStatus;
- }
- 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("fAccyear", getfAccyear())
- .append("fId", getfId())
- .append("fAccmonth", getfAccmonth())
- .append("fCorpid", getfCorpid())
- .append("fMblno", getfMblno())
- .append("fOriginalbillno", getfOriginalbillno())
- .append("fWarehouseLocationid", getfWarehouseLocationid())
- .append("fGoodsid", getfGoodsid())
- .append("fTrademodeid", getfTrademodeid())
- .append("fPreqty", getfPreqty())
- .append("fPregrossweight", getfPregrossweight())
- .append("fPrenetweight", getfPrenetweight())
- .append("fQtyd", getfQtyd())
- .append("fVolumnd", getfVolumnd())
- .append("fGrossweightd", getfGrossweightd())
- .append("fNetweightd", getfNetweightd())
- .append("fVolumnc", getfVolumnc())
- .append("fQtyc", getfQtyc())
- .append("fQtyblc", getfQtyblc())
- .append("fGrossweightc", getfGrossweightc())
- .append("fGrossweightblc", getfGrossweightblc())
- .append("fNetweightc", getfNetweightc())
- .append("fNetweightblc", getfNetweightblc())
- .append("fCntrno", getfCntrno())
- .append("fStatus", getfStatus())
- .append("delFlag", getDelFlag())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|