|
@@ -0,0 +1,632 @@
|
|
|
+package org.jeecg.modules.fbsDispatchLists.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+
|
|
|
+
|
|
|
+ * @Description: 销售发货退货单主表(表题)
|
|
|
+ * @author: jeecg-boot
|
|
|
+ * @date: 2020-10-22
|
|
|
+ * @version: V1.0
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("DispatchLists")
|
|
|
+public class FbsDispatchLists implements Serializable {
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+
|
|
|
+ @Excel(name = "autoid", width = 15)
|
|
|
+ private Integer autoid;
|
|
|
+
|
|
|
+ @Excel(name = "dlid", width = 15)
|
|
|
+ private Integer dlid;
|
|
|
+
|
|
|
+ @Excel(name = "icorid", width = 15)
|
|
|
+ private Integer icorid;
|
|
|
+
|
|
|
+ @Excel(name = "cwhcode", width = 15)
|
|
|
+ private String cwhcode;
|
|
|
+
|
|
|
+ @Excel(name = "cinvcode", width = 15)
|
|
|
+ private String cinvcode;
|
|
|
+
|
|
|
+ @Excel(name = "iquantity", width = 15)
|
|
|
+ private java.math.BigDecimal iquantity;
|
|
|
+
|
|
|
+ @Excel(name = "inum", width = 15)
|
|
|
+ private java.math.BigDecimal inum;
|
|
|
+
|
|
|
+ @Excel(name = "iquotedprice", width = 15)
|
|
|
+ private java.math.BigDecimal iquotedprice;
|
|
|
+
|
|
|
+ @Excel(name = "iunitprice", width = 15)
|
|
|
+ private java.math.BigDecimal iunitprice;
|
|
|
+
|
|
|
+ @Excel(name = "itaxunitprice", width = 15)
|
|
|
+ private java.math.BigDecimal itaxunitprice;
|
|
|
+
|
|
|
+ @Excel(name = "imoney", width = 15)
|
|
|
+ private Object imoney;
|
|
|
+
|
|
|
+ @Excel(name = "itax", width = 15)
|
|
|
+ private Object itax;
|
|
|
+
|
|
|
+ @Excel(name = "isum", width = 15)
|
|
|
+ private Object isum;
|
|
|
+
|
|
|
+ @Excel(name = "idiscount", width = 15)
|
|
|
+ private Object idiscount;
|
|
|
+
|
|
|
+ @Excel(name = "inatunitprice", width = 15)
|
|
|
+ private java.math.BigDecimal inatunitprice;
|
|
|
+
|
|
|
+ @Excel(name = "inatmoney", width = 15)
|
|
|
+ private Object inatmoney;
|
|
|
+
|
|
|
+ @Excel(name = "inattax", width = 15)
|
|
|
+ private Object inattax;
|
|
|
+
|
|
|
+ @Excel(name = "inatsum", width = 15)
|
|
|
+ private Object inatsum;
|
|
|
+
|
|
|
+ @Excel(name = "inatdiscount", width = 15)
|
|
|
+ private Object inatdiscount;
|
|
|
+
|
|
|
+ @Excel(name = "isettlenum", width = 15)
|
|
|
+ private java.math.BigDecimal isettlenum;
|
|
|
+
|
|
|
+ @Excel(name = "isettlequantity", width = 15)
|
|
|
+ private java.math.BigDecimal isettlequantity;
|
|
|
+
|
|
|
+ @Excel(name = "ibatch", width = 15)
|
|
|
+ private Integer ibatch;
|
|
|
+
|
|
|
+ @Excel(name = "cbatch", width = 15)
|
|
|
+ private String cbatch;
|
|
|
+
|
|
|
+ @Excel(name = "bsettleall", width = 15)
|
|
|
+ private Object bsettleall;
|
|
|
+
|
|
|
+ @Excel(name = "cmemo", width = 15)
|
|
|
+ private String cmemo;
|
|
|
+
|
|
|
+ @Excel(name = "cfree1", width = 15)
|
|
|
+ private String cfree1;
|
|
|
+
|
|
|
+ @Excel(name = "cfree2", width = 15)
|
|
|
+ private String cfree2;
|
|
|
+
|
|
|
+ @Excel(name = "itb", width = 15)
|
|
|
+ private Integer itb;
|
|
|
+
|
|
|
+ @Excel(name = "dvdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dvdate;
|
|
|
+
|
|
|
+ @Excel(name = "tbquantity", width = 15)
|
|
|
+ private java.math.BigDecimal tbquantity;
|
|
|
+
|
|
|
+ @Excel(name = "tbnum", width = 15)
|
|
|
+ private java.math.BigDecimal tbnum;
|
|
|
+
|
|
|
+ @Excel(name = "isosid", width = 15)
|
|
|
+ private Integer isosid;
|
|
|
+
|
|
|
+ @Excel(name = "idlsid", width = 15)
|
|
|
+ private Integer idlsid;
|
|
|
+
|
|
|
+ @Excel(name = "kl", width = 15)
|
|
|
+ private java.math.BigDecimal kl;
|
|
|
+
|
|
|
+ @Excel(name = "kl2", width = 15)
|
|
|
+ private java.math.BigDecimal kl2;
|
|
|
+
|
|
|
+ @Excel(name = "cinvname", width = 15)
|
|
|
+ private String cinvname;
|
|
|
+
|
|
|
+ @Excel(name = "itaxrate", width = 15)
|
|
|
+ private java.math.BigDecimal itaxrate;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine22", width = 15)
|
|
|
+ private String cdefine22;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine23", width = 15)
|
|
|
+ private String cdefine23;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine24", width = 15)
|
|
|
+ private String cdefine24;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine25", width = 15)
|
|
|
+ private String cdefine25;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine26", width = 15)
|
|
|
+ private Float cdefine26;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine27", width = 15)
|
|
|
+ private Float cdefine27;
|
|
|
+
|
|
|
+ @Excel(name = "foutquantity", width = 15)
|
|
|
+ private java.math.BigDecimal foutquantity;
|
|
|
+
|
|
|
+ @Excel(name = "foutnum", width = 15)
|
|
|
+ private java.math.BigDecimal foutnum;
|
|
|
+
|
|
|
+ @Excel(name = "citemcode", width = 15)
|
|
|
+ private String citemcode;
|
|
|
+
|
|
|
+ @Excel(name = "citemClass", width = 15)
|
|
|
+ private String citemClass;
|
|
|
+
|
|
|
+ @Excel(name = "fsalecost", width = 15)
|
|
|
+ private java.math.BigDecimal fsalecost;
|
|
|
+
|
|
|
+ @Excel(name = "fsaleprice", width = 15)
|
|
|
+ private java.math.BigDecimal fsaleprice;
|
|
|
+
|
|
|
+ @Excel(name = "cvenabbname", width = 15)
|
|
|
+ private String cvenabbname;
|
|
|
+
|
|
|
+ @Excel(name = "citemname", width = 15)
|
|
|
+ private String citemname;
|
|
|
+
|
|
|
+ @Excel(name = "citemCname", width = 15)
|
|
|
+ private String citemCname;
|
|
|
+
|
|
|
+ @Excel(name = "cfree3", width = 15)
|
|
|
+ private String cfree3;
|
|
|
+
|
|
|
+ @Excel(name = "cfree4", width = 15)
|
|
|
+ private String cfree4;
|
|
|
+
|
|
|
+ @Excel(name = "cfree5", width = 15)
|
|
|
+ private String cfree5;
|
|
|
+
|
|
|
+ @Excel(name = "cfree6", width = 15)
|
|
|
+ private String cfree6;
|
|
|
+
|
|
|
+ @Excel(name = "cfree7", width = 15)
|
|
|
+ private String cfree7;
|
|
|
+
|
|
|
+ @Excel(name = "cfree8", width = 15)
|
|
|
+ private String cfree8;
|
|
|
+
|
|
|
+ @Excel(name = "cfree9", width = 15)
|
|
|
+ private String cfree9;
|
|
|
+
|
|
|
+ @Excel(name = "cfree10", width = 15)
|
|
|
+ private String cfree10;
|
|
|
+
|
|
|
+ @Excel(name = "bisstqc", width = 15)
|
|
|
+ private Object bisstqc;
|
|
|
+
|
|
|
+ @Excel(name = "iinvexchrate", width = 15)
|
|
|
+ private java.math.BigDecimal iinvexchrate;
|
|
|
+
|
|
|
+ @Excel(name = "cunitid", width = 15)
|
|
|
+ private String cunitid;
|
|
|
+
|
|
|
+ @Excel(name = "ccode", width = 15)
|
|
|
+ private String ccode;
|
|
|
+
|
|
|
+ @Excel(name = "iretquantity", width = 15)
|
|
|
+ private java.math.BigDecimal iretquantity;
|
|
|
+
|
|
|
+ @Excel(name = "fensettlequan", width = 15)
|
|
|
+ private java.math.BigDecimal fensettlequan;
|
|
|
+
|
|
|
+ @Excel(name = "fensettlesum", width = 15)
|
|
|
+ private Object fensettlesum;
|
|
|
+
|
|
|
+ @Excel(name = "isettleprice", width = 15)
|
|
|
+ private java.math.BigDecimal isettleprice;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine28", width = 15)
|
|
|
+ private String cdefine28;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine29", width = 15)
|
|
|
+ private String cdefine29;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine30", width = 15)
|
|
|
+ private String cdefine30;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine31", width = 15)
|
|
|
+ private String cdefine31;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine32", width = 15)
|
|
|
+ private String cdefine32;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine33", width = 15)
|
|
|
+ private String cdefine33;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine34", width = 15)
|
|
|
+ private Integer cdefine34;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine35", width = 15)
|
|
|
+ private Integer cdefine35;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine36", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date cdefine36;
|
|
|
+
|
|
|
+ @Excel(name = "cdefine37", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date cdefine37;
|
|
|
+
|
|
|
+ @Excel(name = "dmdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dmdate;
|
|
|
+
|
|
|
+ @Excel(name = "bgsp", width = 15)
|
|
|
+ private Object bgsp;
|
|
|
+
|
|
|
+ @Excel(name = "cgspstate", width = 15)
|
|
|
+ private String cgspstate;
|
|
|
+
|
|
|
+ @Excel(name = "csocode", width = 15)
|
|
|
+ private String csocode;
|
|
|
+
|
|
|
+ @Excel(name = "ccorcode", width = 15)
|
|
|
+ private String ccorcode;
|
|
|
+
|
|
|
+ @Excel(name = "ippartseqid", width = 15)
|
|
|
+ private Integer ippartseqid;
|
|
|
+
|
|
|
+ @Excel(name = "ippartid", width = 15)
|
|
|
+ private Integer ippartid;
|
|
|
+
|
|
|
+ @Excel(name = "ippartqty", width = 15)
|
|
|
+ private java.math.BigDecimal ippartqty;
|
|
|
+
|
|
|
+ @Excel(name = "ccontractid", width = 15)
|
|
|
+ private String ccontractid;
|
|
|
+
|
|
|
+ @Excel(name = "ccontracttagcode", width = 15)
|
|
|
+ private String ccontracttagcode;
|
|
|
+
|
|
|
+ @Excel(name = "ccontractrowguid", width = 15)
|
|
|
+ private Object ccontractrowguid;
|
|
|
+
|
|
|
+ @Excel(name = "imassdate", width = 15)
|
|
|
+ private Integer imassdate;
|
|
|
+
|
|
|
+ @Excel(name = "cmassunit", width = 15)
|
|
|
+ private Integer cmassunit;
|
|
|
+
|
|
|
+ @Excel(name = "bqaneedcheck", width = 15)
|
|
|
+ private Object bqaneedcheck;
|
|
|
+
|
|
|
+ @Excel(name = "bqaurgency", width = 15)
|
|
|
+ private Object bqaurgency;
|
|
|
+
|
|
|
+ @Excel(name = "bqachecking", width = 15)
|
|
|
+ private Object bqachecking;
|
|
|
+
|
|
|
+ @Excel(name = "bqachecked", width = 15)
|
|
|
+ private Object bqachecked;
|
|
|
+
|
|
|
+ @Excel(name = "iqaquantity", width = 15)
|
|
|
+ private java.math.BigDecimal iqaquantity;
|
|
|
+
|
|
|
+ @Excel(name = "iqanum", width = 15)
|
|
|
+ private java.math.BigDecimal iqanum;
|
|
|
+
|
|
|
+ @Excel(name = "ccusinvcode", width = 15)
|
|
|
+ private String ccusinvcode;
|
|
|
+
|
|
|
+ @Excel(name = "ccusinvname", width = 15)
|
|
|
+ private String ccusinvname;
|
|
|
+
|
|
|
+ @Excel(name = "fsumsignquantity", width = 15)
|
|
|
+ private java.math.BigDecimal fsumsignquantity;
|
|
|
+
|
|
|
+ @Excel(name = "fsumsignnum", width = 15)
|
|
|
+ private java.math.BigDecimal fsumsignnum;
|
|
|
+
|
|
|
+ @Excel(name = "cbaccounter", width = 15)
|
|
|
+ private String cbaccounter;
|
|
|
+
|
|
|
+ @Excel(name = "bcosting", width = 15)
|
|
|
+ private Object bcosting;
|
|
|
+
|
|
|
+ @Excel(name = "cordercode", width = 15)
|
|
|
+ private String cordercode;
|
|
|
+
|
|
|
+ @Excel(name = "iorderrowno", width = 15)
|
|
|
+ private Integer iorderrowno;
|
|
|
+
|
|
|
+ @Excel(name = "fcusminprice", width = 15)
|
|
|
+ private java.math.BigDecimal fcusminprice;
|
|
|
+
|
|
|
+ @Excel(name = "icostquantity", width = 15)
|
|
|
+ private java.math.BigDecimal icostquantity;
|
|
|
+
|
|
|
+ @Excel(name = "icostsum", width = 15)
|
|
|
+ private Object icostsum;
|
|
|
+
|
|
|
+ @Excel(name = "ispecialtype", width = 15)
|
|
|
+ private Integer ispecialtype;
|
|
|
+
|
|
|
+ @Excel(name = "cvmivencode", width = 15)
|
|
|
+ private String cvmivencode;
|
|
|
+
|
|
|
+ @Excel(name = "iexchsum", width = 15)
|
|
|
+ private Object iexchsum;
|
|
|
+
|
|
|
+ @Excel(name = "imoneysum", width = 15)
|
|
|
+ private Object imoneysum;
|
|
|
+
|
|
|
+ @Excel(name = "irowno", width = 15)
|
|
|
+ private Integer irowno;
|
|
|
+
|
|
|
+ @Excel(name = "frettbquantity", width = 15)
|
|
|
+ private java.math.BigDecimal frettbquantity;
|
|
|
+
|
|
|
+ @Excel(name = "fretsum", width = 15)
|
|
|
+ private java.math.BigDecimal fretsum;
|
|
|
+
|
|
|
+ @Excel(name = "iexpiratdatecalcu", width = 15)
|
|
|
+ private Integer iexpiratdatecalcu;
|
|
|
+
|
|
|
+ @Excel(name = "dexpirationdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dexpirationdate;
|
|
|
+
|
|
|
+ @Excel(name = "cexpirationdate", width = 15)
|
|
|
+ private String cexpirationdate;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty1", width = 15)
|
|
|
+ private java.math.BigDecimal cbatchproperty1;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty2", width = 15)
|
|
|
+ private java.math.BigDecimal cbatchproperty2;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty3", width = 15)
|
|
|
+ private java.math.BigDecimal cbatchproperty3;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty4", width = 15)
|
|
|
+ private java.math.BigDecimal cbatchproperty4;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty5", width = 15)
|
|
|
+ private java.math.BigDecimal cbatchproperty5;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty6", width = 15)
|
|
|
+ private String cbatchproperty6;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty7", width = 15)
|
|
|
+ private String cbatchproperty7;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty8", width = 15)
|
|
|
+ private String cbatchproperty8;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty9", width = 15)
|
|
|
+ private String cbatchproperty9;
|
|
|
+
|
|
|
+ @Excel(name = "cbatchproperty10", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date cbatchproperty10;
|
|
|
+
|
|
|
+ @Excel(name = "dblpreexchmomey", width = 15)
|
|
|
+ private java.math.BigDecimal dblpreexchmomey;
|
|
|
+
|
|
|
+ @Excel(name = "dblpremomey", width = 15)
|
|
|
+ private java.math.BigDecimal dblpremomey;
|
|
|
+
|
|
|
+ @Excel(name = "idemandtype", width = 15)
|
|
|
+ private Integer idemandtype;
|
|
|
+
|
|
|
+ @Excel(name = "cdemandcode", width = 15)
|
|
|
+ private String cdemandcode;
|
|
|
+
|
|
|
+ @Excel(name = "cdemandmemo", width = 15)
|
|
|
+ private String cdemandmemo;
|
|
|
+
|
|
|
+ @Excel(name = "cdemandid", width = 15)
|
|
|
+ private String cdemandid;
|
|
|
+
|
|
|
+ @Excel(name = "idemandseq", width = 15)
|
|
|
+ private Integer idemandseq;
|
|
|
+
|
|
|
+ @Excel(name = "cvencode", width = 15)
|
|
|
+ private String cvencode;
|
|
|
+
|
|
|
+ @Excel(name = "creasoncode", width = 15)
|
|
|
+ private String creasoncode;
|
|
|
+
|
|
|
+ @Excel(name = "cinvsn", width = 15)
|
|
|
+ private String cinvsn;
|
|
|
+
|
|
|
+ @Excel(name = "iinvsncount", width = 15)
|
|
|
+ private Integer iinvsncount;
|
|
|
+
|
|
|
+ @Excel(name = "bneedsign", width = 15)
|
|
|
+ private Object bneedsign;
|
|
|
+
|
|
|
+ @Excel(name = "bsignover", width = 15)
|
|
|
+ private Object bsignover;
|
|
|
+
|
|
|
+ @Excel(name = "bneedloss", width = 15)
|
|
|
+ private Object bneedloss;
|
|
|
+
|
|
|
+ @Excel(name = "flossrate", width = 15)
|
|
|
+ private java.math.BigDecimal flossrate;
|
|
|
+
|
|
|
+ @Excel(name = "frlossqty", width = 15)
|
|
|
+ private java.math.BigDecimal frlossqty;
|
|
|
+
|
|
|
+ @Excel(name = "fulossqty", width = 15)
|
|
|
+ private java.math.BigDecimal fulossqty;
|
|
|
+
|
|
|
+ @Excel(name = "isettletype", width = 15)
|
|
|
+ private Integer isettletype;
|
|
|
+
|
|
|
+ @Excel(name = "crelacuscode", width = 15)
|
|
|
+ private String crelacuscode;
|
|
|
+
|
|
|
+ @Excel(name = "clossmaker", width = 15)
|
|
|
+ private String clossmaker;
|
|
|
+
|
|
|
+ @Excel(name = "dlossdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dlossdate;
|
|
|
+
|
|
|
+ @Excel(name = "dlosstime", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dlosstime;
|
|
|
+
|
|
|
+ @Excel(name = "icoridlsid", width = 15)
|
|
|
+ private Integer icoridlsid;
|
|
|
+
|
|
|
+ @Excel(name = "fretoutqty", width = 15)
|
|
|
+ private java.math.BigDecimal fretoutqty;
|
|
|
+
|
|
|
+ @Excel(name = "bodyOutid", width = 15)
|
|
|
+ private String bodyOutid;
|
|
|
+
|
|
|
+ @Excel(name = "fveribillqty", width = 15)
|
|
|
+ private java.math.BigDecimal fveribillqty;
|
|
|
+
|
|
|
+ @Excel(name = "fveribillsum", width = 15)
|
|
|
+ private Object fveribillsum;
|
|
|
+
|
|
|
+ @Excel(name = "fveriretqty", width = 15)
|
|
|
+ private java.math.BigDecimal fveriretqty;
|
|
|
+
|
|
|
+ @Excel(name = "fveriretsum", width = 15)
|
|
|
+ private Object fveriretsum;
|
|
|
+
|
|
|
+ @Excel(name = "flastsettleqty", width = 15)
|
|
|
+ private java.math.BigDecimal flastsettleqty;
|
|
|
+
|
|
|
+ @Excel(name = "flastsettlesum", width = 15)
|
|
|
+ private Object flastsettlesum;
|
|
|
+
|
|
|
+ @Excel(name = "cbookwhcode", width = 15)
|
|
|
+ private String cbookwhcode;
|
|
|
+
|
|
|
+ @Excel(name = "cinvouchtype", width = 15)
|
|
|
+ private String cinvouchtype;
|
|
|
+
|
|
|
+ @Excel(name = "cposition", width = 15)
|
|
|
+ private String cposition;
|
|
|
+
|
|
|
+ @Excel(name = "fretqtywkp", width = 15)
|
|
|
+ private java.math.BigDecimal fretqtywkp;
|
|
|
+
|
|
|
+ @Excel(name = "fretqtyykp", width = 15)
|
|
|
+ private java.math.BigDecimal fretqtyykp;
|
|
|
+
|
|
|
+ @Excel(name = "frettbqtyykp", width = 15)
|
|
|
+ private java.math.BigDecimal frettbqtyykp;
|
|
|
+
|
|
|
+ @Excel(name = "fretsumykp", width = 15)
|
|
|
+ private java.math.BigDecimal fretsumykp;
|
|
|
+
|
|
|
+ @Excel(name = "dkeepdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dkeepdate;
|
|
|
+
|
|
|
+ @Excel(name = "cscloser", width = 15)
|
|
|
+ private String cscloser;
|
|
|
+
|
|
|
+ @Excel(name = "isaleoutid", width = 15)
|
|
|
+ private Integer isaleoutid;
|
|
|
+
|
|
|
+ @Excel(name = "bsaleprice", width = 15)
|
|
|
+ private Object bsaleprice;
|
|
|
+
|
|
|
+ @Excel(name = "bgift", width = 15)
|
|
|
+ private Object bgift;
|
|
|
+
|
|
|
+ @Excel(name = "bmpforderclosed", width = 15)
|
|
|
+ private Object bmpforderclosed;
|
|
|
+
|
|
|
+ @Excel(name = "cbsysbarcode", width = 15)
|
|
|
+ private String cbsysbarcode;
|
|
|
+
|
|
|
+ @Excel(name = "fxjquantity", width = 15)
|
|
|
+ private Float fxjquantity;
|
|
|
+
|
|
|
+ @Excel(name = "fxjnum", width = 15)
|
|
|
+ private Float fxjnum;
|
|
|
+
|
|
|
+ @Excel(name = "biacreatebill", width = 15)
|
|
|
+ private Object biacreatebill;
|
|
|
+
|
|
|
+ @Excel(name = "cparentcode", width = 15)
|
|
|
+ private String cparentcode;
|
|
|
+
|
|
|
+ @Excel(name = "cchildcode", width = 15)
|
|
|
+ private String cchildcode;
|
|
|
+
|
|
|
+ @Excel(name = "fchildqty", width = 15)
|
|
|
+ private java.math.BigDecimal fchildqty;
|
|
|
+
|
|
|
+ @Excel(name = "fchildrate", width = 15)
|
|
|
+ private java.math.BigDecimal fchildrate;
|
|
|
+
|
|
|
+ @Excel(name = "icalctype", width = 15)
|
|
|
+ private Integer icalctype;
|
|
|
+
|
|
|
+ @Excel(name = "fappretwkpqty", width = 15)
|
|
|
+ private java.math.BigDecimal fappretwkpqty;
|
|
|
+
|
|
|
+ @Excel(name = "fappretwkpsum", width = 15)
|
|
|
+ private java.math.BigDecimal fappretwkpsum;
|
|
|
+
|
|
|
+ @Excel(name = "fappretykpqty", width = 15)
|
|
|
+ private java.math.BigDecimal fappretykpqty;
|
|
|
+
|
|
|
+ @Excel(name = "fappretykpsum", width = 15)
|
|
|
+ private java.math.BigDecimal fappretykpsum;
|
|
|
+
|
|
|
+ @Excel(name = "fappretwkptbqty", width = 15)
|
|
|
+ private java.math.BigDecimal fappretwkptbqty;
|
|
|
+
|
|
|
+ @Excel(name = "fappretykptbqty", width = 15)
|
|
|
+ private java.math.BigDecimal fappretykptbqty;
|
|
|
+
|
|
|
+ @Excel(name = "irtnappid", width = 15)
|
|
|
+ private Integer irtnappid;
|
|
|
+
|
|
|
+ @Excel(name = "crtnappcode", width = 15)
|
|
|
+ private String crtnappcode;
|
|
|
+
|
|
|
+ @Excel(name = "fretailrealamount", width = 15)
|
|
|
+ private java.math.BigDecimal fretailrealamount;
|
|
|
+
|
|
|
+ @Excel(name = "fretailsettleamount", width = 15)
|
|
|
+ private java.math.BigDecimal fretailsettleamount;
|
|
|
+
|
|
|
+ @Excel(name = "cfactorycode", width = 15)
|
|
|
+ private String cfactorycode;
|
|
|
+
|
|
|
+ @Excel(name = "gcsourceid", width = 15)
|
|
|
+ private Integer gcsourceid;
|
|
|
+
|
|
|
+ @Excel(name = "gcsourceids", width = 15)
|
|
|
+ private Integer gcsourceids;
|
|
|
+
|
|
|
+ @Excel(name = "cconfirmer", width = 15)
|
|
|
+ private String cconfirmer;
|
|
|
+
|
|
|
+ @Excel(name = "dconfirmdate", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date dconfirmdate;
|
|
|
+}
|