|
|
@@ -0,0 +1,97 @@
|
|
|
+package com.usoftchina.saas.purchase.dto;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Created by zdw
|
|
|
+ * 2018-10-17 13:45.
|
|
|
+ */
|
|
|
+@Data
|
|
|
+public class ProdIODetailDTO implements Serializable {
|
|
|
+
|
|
|
+ protected Long id;
|
|
|
+
|
|
|
+ protected long companyId;
|
|
|
+
|
|
|
+ protected Date createTime;
|
|
|
+
|
|
|
+ protected long creatorId;
|
|
|
+
|
|
|
+ protected Date updateTime;
|
|
|
+
|
|
|
+ protected long updaterId;
|
|
|
+
|
|
|
+ private Long pd_piid;
|
|
|
+
|
|
|
+ private String pd_inoutno;
|
|
|
+
|
|
|
+ private String pd_piclass;
|
|
|
+
|
|
|
+ private Integer pd_pdno;
|
|
|
+
|
|
|
+ private String pd_ordercode;
|
|
|
+
|
|
|
+ private Integer pd_orderdetno;
|
|
|
+
|
|
|
+ private Integer pd_prodid;
|
|
|
+
|
|
|
+ private String pd_prodcode;
|
|
|
+
|
|
|
+ private String pd_unit;
|
|
|
+
|
|
|
+ private Integer pd_inqty;
|
|
|
+
|
|
|
+ private Integer pd_outqty;
|
|
|
+
|
|
|
+ private Double pd_orderprice;
|
|
|
+
|
|
|
+ private Double pd_sendprice;
|
|
|
+
|
|
|
+ private Double pd_price;
|
|
|
+
|
|
|
+ private Double pd_total;
|
|
|
+
|
|
|
+ private Double pd_taxrate;
|
|
|
+
|
|
|
+ private Double pd_netprice;
|
|
|
+
|
|
|
+ private Double pd_nettotal;
|
|
|
+
|
|
|
+ private Integer pd_whid;
|
|
|
+
|
|
|
+ private String pd_whcode;
|
|
|
+
|
|
|
+ private String pd_whname;
|
|
|
+
|
|
|
+ private Integer pd_inwhid;
|
|
|
+
|
|
|
+ private String pd_inwhcode;
|
|
|
+
|
|
|
+ private String pd_inwhname;
|
|
|
+
|
|
|
+ private Integer pd_orderid;
|
|
|
+
|
|
|
+ private Integer pd_sdid;
|
|
|
+
|
|
|
+ private Integer pd_status;
|
|
|
+
|
|
|
+ private String pd_text1;
|
|
|
+
|
|
|
+ private String pd_text2;
|
|
|
+
|
|
|
+ private String pd_text3;
|
|
|
+
|
|
|
+ private String pd_text4;
|
|
|
+
|
|
|
+ private String pd_text5;
|
|
|
+
|
|
|
+ private Integer pd_ym;
|
|
|
+
|
|
|
+ private Double pd_yqty;
|
|
|
+
|
|
|
+ private String pd_remark;
|
|
|
+
|
|
|
+}
|