|
|
@@ -0,0 +1,156 @@
|
|
|
+package com.usoftchina.saas.sale.dto;
|
|
|
+
|
|
|
+
|
|
|
+import com.usoftchina.saas.base.entity.CommonBaseEntity;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author: guq
|
|
|
+ * @create: 2018-10-10 16:42
|
|
|
+ **/
|
|
|
+@Data
|
|
|
+public class PurchaseListDTO extends CommonBaseEntity implements Serializable {
|
|
|
+
|
|
|
+ //主表信息
|
|
|
+ private Integer pu_id;
|
|
|
+
|
|
|
+ private String pu_code;
|
|
|
+
|
|
|
+ private Date pu_date;
|
|
|
+
|
|
|
+ private Integer pu_vendid;
|
|
|
+
|
|
|
+ private String pu_vendcode;
|
|
|
+
|
|
|
+ private String pu_vendname;
|
|
|
+
|
|
|
+ private Integer pu_buyerid;
|
|
|
+
|
|
|
+ private String pu_buyercode;
|
|
|
+
|
|
|
+ private String pu_buyername;
|
|
|
+
|
|
|
+ private Date pu_delivery;
|
|
|
+
|
|
|
+ private Double pu_taxtotal;
|
|
|
+
|
|
|
+ private Double pu_total;
|
|
|
+
|
|
|
+ private String pu_remark;
|
|
|
+
|
|
|
+ private String pu_totalupper;
|
|
|
+
|
|
|
+ private String pu_printstatus;
|
|
|
+
|
|
|
+ private String pu_printstatuscode;
|
|
|
+
|
|
|
+ private String pu_acceptstatuscode;
|
|
|
+
|
|
|
+ private String pu_acceptstatus;
|
|
|
+
|
|
|
+ private String pu_statuscode;
|
|
|
+
|
|
|
+ private String pu_status;
|
|
|
+
|
|
|
+ private String pu_text1;
|
|
|
+
|
|
|
+ private String pu_text2;
|
|
|
+
|
|
|
+ private String pu_text3;
|
|
|
+
|
|
|
+ private String pu_text4;
|
|
|
+
|
|
|
+ private String pu_text5;
|
|
|
+
|
|
|
+ private String pu_shipaddresscode;
|
|
|
+
|
|
|
+ private Date pu_auditdate;
|
|
|
+
|
|
|
+ private String pu_auditman;
|
|
|
+
|
|
|
+ //从表字段
|
|
|
+ private Long pd_id;
|
|
|
+
|
|
|
+ private Long pd_puid;
|
|
|
+
|
|
|
+ private String pd_code;
|
|
|
+
|
|
|
+ private Integer pd_detno;
|
|
|
+
|
|
|
+ private Integer pd_prodid;
|
|
|
+
|
|
|
+ private String pd_prodcode;
|
|
|
+
|
|
|
+ private String pd_unit;
|
|
|
+
|
|
|
+ private Double pd_qty;
|
|
|
+
|
|
|
+ private Double pd_price;
|
|
|
+
|
|
|
+ private Double pd_taxprice;
|
|
|
+
|
|
|
+ private Double pd_total;
|
|
|
+
|
|
|
+ private Double pd_taxrate;
|
|
|
+
|
|
|
+ private Double pd_taxtotal;
|
|
|
+
|
|
|
+ private Double pd_acceptqty;
|
|
|
+
|
|
|
+ private Date pd_delivery;
|
|
|
+
|
|
|
+ private String pd_salecode;
|
|
|
+
|
|
|
+ private Integer pd_saledetno;
|
|
|
+
|
|
|
+ private Integer pd_sdid;
|
|
|
+
|
|
|
+ private String pd_text1;
|
|
|
+
|
|
|
+ private String pd_text2;
|
|
|
+
|
|
|
+ private String pd_text3;
|
|
|
+
|
|
|
+ private String pd_text4;
|
|
|
+
|
|
|
+ private String pd_text5;
|
|
|
+
|
|
|
+ private Double pd_yqty;
|
|
|
+
|
|
|
+ private String pd_remark;
|
|
|
+
|
|
|
+ private String pd_ordercode;
|
|
|
+
|
|
|
+ //private ProductDTO productDTO;
|
|
|
+ private Long pr_id;
|
|
|
+ private String pr_code;
|
|
|
+ private String pr_detail;
|
|
|
+ private String pr_spec;
|
|
|
+ private String pr_unit;
|
|
|
+ private String pr_kind;
|
|
|
+ private String pr_orispeccode;
|
|
|
+ private long pr_whid;
|
|
|
+ private String pr_whcode;
|
|
|
+ private String pr_whname;
|
|
|
+ private long pr_zxbzs;
|
|
|
+ private long pr_leadtime;
|
|
|
+ private String pr_brand;
|
|
|
+ private String pr_standardprice;
|
|
|
+ private String pr_purcprice;
|
|
|
+ private String pr_saleprice;
|
|
|
+ private long pr_vendid;
|
|
|
+ private String pr_vendname;
|
|
|
+ private String pr_vendcode;
|
|
|
+ private Date pr_docdate;
|
|
|
+ private long pr_recordmanid;
|
|
|
+ private String pr_recordman;
|
|
|
+ private String pr_status;
|
|
|
+ private String pr_statuscode;
|
|
|
+ private String pr_text1;
|
|
|
+ private String pr_text2;
|
|
|
+ private String pr_text3;
|
|
|
+ private String pr_text4;
|
|
|
+}
|