|
|
@@ -0,0 +1,165 @@
|
|
|
+package com.usoftchina.saas.money.po;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+public class CustomerCheckView {
|
|
|
+ private String pi_inoutno;
|
|
|
+
|
|
|
+ private String pi_class;
|
|
|
+
|
|
|
+ private String pi_custcode;
|
|
|
+
|
|
|
+ private String pi_custname;
|
|
|
+
|
|
|
+ private Date pi_date;
|
|
|
+
|
|
|
+ private Integer pd_pdno;
|
|
|
+
|
|
|
+ private String pr_code;
|
|
|
+
|
|
|
+ private String pr_detail;
|
|
|
+
|
|
|
+ private String pr_spec;
|
|
|
+
|
|
|
+ private String pd_unit;
|
|
|
+
|
|
|
+ private Double qty;
|
|
|
+
|
|
|
+ private Double pd_orderprice;
|
|
|
+
|
|
|
+ private Double pd_taxrate;
|
|
|
+
|
|
|
+ private Double pd_total;
|
|
|
+
|
|
|
+ private Double pd_netprice;
|
|
|
+
|
|
|
+ private Double pd_nettotal;
|
|
|
+
|
|
|
+ public String getPi_inoutno() {
|
|
|
+ return pi_inoutno;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPi_inoutno(String pi_inoutno) {
|
|
|
+ this.pi_inoutno = pi_inoutno;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPi_class() {
|
|
|
+ return pi_class;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPi_class(String pi_class) {
|
|
|
+ this.pi_class = pi_class;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPi_custcode() {
|
|
|
+ return pi_custcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPi_custcode(String pi_custcode) {
|
|
|
+ this.pi_custcode = pi_custcode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPi_custname() {
|
|
|
+ return pi_custname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPi_custname(String pi_custname) {
|
|
|
+ this.pi_custname = pi_custname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Date getPi_date() {
|
|
|
+ return pi_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPi_date(Date pi_date) {
|
|
|
+ this.pi_date = pi_date;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getPd_pdno() {
|
|
|
+ return pd_pdno;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_pdno(Integer pd_pdno) {
|
|
|
+ this.pd_pdno = pd_pdno;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPr_code() {
|
|
|
+ return pr_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPr_code(String pr_code) {
|
|
|
+ this.pr_code = pr_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPr_detail() {
|
|
|
+ return pr_detail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPr_detail(String pr_detail) {
|
|
|
+ this.pr_detail = pr_detail;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPr_spec() {
|
|
|
+ return pr_spec;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPr_spec(String pr_spec) {
|
|
|
+ this.pr_spec = pr_spec;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPd_unit() {
|
|
|
+ return pd_unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_unit(String pd_unit) {
|
|
|
+ this.pd_unit = pd_unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getQty() {
|
|
|
+ return qty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQty(Double qty) {
|
|
|
+ this.qty = qty;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPd_orderprice() {
|
|
|
+ return pd_orderprice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_orderprice(Double pd_orderprice) {
|
|
|
+ this.pd_orderprice = pd_orderprice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPd_taxrate() {
|
|
|
+ return pd_taxrate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_taxrate(Double pd_taxrate) {
|
|
|
+ this.pd_taxrate = pd_taxrate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPd_total() {
|
|
|
+ return pd_total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_total(Double pd_total) {
|
|
|
+ this.pd_total = pd_total;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPd_netprice() {
|
|
|
+ return pd_netprice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_netprice(Double pd_netprice) {
|
|
|
+ this.pd_netprice = pd_netprice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Double getPd_nettotal() {
|
|
|
+ return pd_nettotal;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPd_nettotal(Double pd_nettotal) {
|
|
|
+ this.pd_nettotal = pd_nettotal;
|
|
|
+ }
|
|
|
+}
|