package com.java110.po.purchase;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @ClassName PurchaseApplyDetailPo
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/5/29 20:45
|
* @Version 1.0
|
* add by wuxw 2020/5/29
|
**/
|
@Data
|
public class PurchaseApplyDetailPo implements Serializable {
|
|
private String applyOrderId;
|
private String resId;
|
private String quantity;
|
private String remark;
|
private String price;
|
private String id;
|
|
private String purchaseQuantity;
|
|
private String purchaseRemark;
|
|
private String createTime;
|
|
private String rsId;
|
private String originalStock;
|
|
private String statusCd = "0";
|
|
private String timesId;
|
private String consultPrice;
|
private String shId;
|
|
private String bId;
|
|
|
/**
|
* 采购日期二(适配非标准日期)
|
*/
|
private String purchaseDate2;
|
private String contactPerson; // 联系人
|
private String phone; // 手机号
|
private String wechat; // 微信号
|
|
/**
|
* 采购数量二(适配非数值脏数据)
|
*/
|
private String purchaseQuantity2;
|
|
/**
|
* 采购日期三(适配非标准日期)
|
*/
|
private String purchaseDate3;
|
|
/**
|
* 采购数量三(适配非数值脏数据)
|
*/
|
private String purchaseQuantity3;
|
|
|
/**
|
* 第一次累计采购量(适配非数值脏数据)
|
*/
|
private String firstCumulativePurchaseQuantity;
|
|
/**
|
* 采购日期(格式:YYYY-MM-DD,适配非标准日期)
|
*/
|
private String purchaseDate;
|
|
/**
|
* 采购金额(适配带符号/单位的脏数据,如「1000元」「¥2000.50」)
|
*/
|
private String purchaseAmount;
|
|
/**
|
* 采购人员(适配脏数据,如姓名/工号) // 新增采购人员字段
|
*/
|
private String purchaser;
|
|
/**
|
* 合同编号
|
*/
|
private String contractNo;
|
|
/**
|
* 主供应商名称
|
*/
|
private String supplier;
|
|
/**
|
* 第一次累计送货量(适配非数值脏数据) // 新增字段
|
*/
|
private String firstCumulativeDeliveryQuantity;
|
|
/**
|
* 送货单号
|
*/
|
private String deliveryOrderNo;
|
|
/**
|
* 送货数量
|
*/
|
private String deliveryQuantity;
|
|
/**
|
* 送货日期
|
*/
|
private String deliveryDate;
|
|
/**
|
* 签收人
|
*/
|
private String signer;
|
|
// /**
|
// * 应付金额
|
// */
|
// private String payableAmount;
|
//
|
// /**
|
// * 已付金额
|
// */
|
// private String paidAmount;
|
//
|
// /**
|
// * 未付金额
|
// */
|
// private String unpaidAmount;
|
//
|
// /**
|
// * 本次付款金额
|
// */
|
// private String paymentAmount;
|
//
|
// /**
|
// * 付款单号
|
// */
|
// private String paymentOrderNo;
|
//
|
// /**
|
// * 拟付日期
|
// */
|
// private String toBePaidDate;
|
//
|
// /**
|
// * 付款日期
|
// */
|
// private String paymentDate;
|
//
|
// /**
|
// * 发票编号
|
// */
|
// private String invoiceNo;
|
//
|
// /**
|
// * 供应商1(格式:名称|联系人|电话,适配脏数据)
|
// */
|
// private String supplier1;
|
//
|
// /**
|
// * 供应商2(格式:名称|联系人|电话,适配脏数据)
|
// */
|
// private String supplier2;
|
//
|
// /**
|
// * 供应商3(格式:名称|联系人|电话,适配脏数据)
|
// */
|
// private String supplier3;
|
|
|
public String getApplyOrderId() {
|
return applyOrderId;
|
}
|
|
public void setApplyOrderId(String applyOrderId) {
|
this.applyOrderId = applyOrderId;
|
}
|
|
public String getResId() {
|
return resId;
|
}
|
|
public void setResId(String resId) {
|
this.resId = resId;
|
}
|
|
public String getQuantity() {
|
return quantity;
|
}
|
|
public void setQuantity(String quantity) {
|
this.quantity = quantity;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getPrice() {
|
return price;
|
}
|
|
public void setPrice(String price) {
|
this.price = price;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getPurchaseQuantity() {
|
return purchaseQuantity;
|
}
|
|
public void setPurchaseQuantity(String purchaseQuantity) {
|
this.purchaseQuantity = purchaseQuantity;
|
}
|
|
public String getPurchaseRemark() {
|
return purchaseRemark;
|
}
|
|
public void setPurchaseRemark(String purchaseRemark) {
|
this.purchaseRemark = purchaseRemark;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getRsId() {
|
return rsId;
|
}
|
|
public void setRsId(String rsId) {
|
this.rsId = rsId;
|
}
|
|
public String getOriginalStock() {
|
return originalStock;
|
}
|
|
public void setOriginalStock(String originalStock) {
|
this.originalStock = originalStock;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getTimesId() {
|
return timesId;
|
}
|
|
public void setTimesId(String timesId) {
|
this.timesId = timesId;
|
}
|
|
public String getConsultPrice() {
|
return consultPrice;
|
}
|
|
public void setConsultPrice(String consultPrice) {
|
this.consultPrice = consultPrice;
|
}
|
|
public String getShId() {
|
return shId;
|
}
|
|
public void setShId(String shId) {
|
this.shId = shId;
|
}
|
|
public String getbId() {
|
return bId;
|
}
|
|
public void setbId(String bId) {
|
this.bId = bId;
|
}
|
|
public String getPurchaseDate2() {
|
return purchaseDate2;
|
}
|
|
public void setPurchaseDate2(String purchaseDate2) {
|
this.purchaseDate2 = purchaseDate2;
|
}
|
|
public String getPurchaseQuantity2() {
|
return purchaseQuantity2;
|
}
|
|
public void setPurchaseQuantity2(String purchaseQuantity2) {
|
this.purchaseQuantity2 = purchaseQuantity2;
|
}
|
|
public String getPurchaseDate3() {
|
return purchaseDate3;
|
}
|
|
public void setPurchaseDate3(String purchaseDate3) {
|
this.purchaseDate3 = purchaseDate3;
|
}
|
|
public String getPurchaseQuantity3() {
|
return purchaseQuantity3;
|
}
|
|
public void setPurchaseQuantity3(String purchaseQuantity3) {
|
this.purchaseQuantity3 = purchaseQuantity3;
|
}
|
|
public String getFirstCumulativePurchaseQuantity() {
|
return firstCumulativePurchaseQuantity;
|
}
|
|
public void setFirstCumulativePurchaseQuantity(String firstCumulativePurchaseQuantity) {
|
this.firstCumulativePurchaseQuantity = firstCumulativePurchaseQuantity;
|
}
|
|
public String getPurchaseDate() {
|
return purchaseDate;
|
}
|
|
public void setPurchaseDate(String purchaseDate) {
|
this.purchaseDate = purchaseDate;
|
}
|
|
public String getPurchaseAmount() {
|
return purchaseAmount;
|
}
|
|
public void setPurchaseAmount(String purchaseAmount) {
|
this.purchaseAmount = purchaseAmount;
|
}
|
|
public String getPurchaser() {
|
return purchaser;
|
}
|
|
public void setPurchaser(String purchaser) {
|
this.purchaser = purchaser;
|
}
|
|
public String getContractNo() {
|
return contractNo;
|
}
|
|
public void setContractNo(String contractNo) {
|
this.contractNo = contractNo;
|
}
|
|
public String getSupplier() {
|
return supplier;
|
}
|
|
public void setSupplier(String supplier) {
|
this.supplier = supplier;
|
}
|
|
public String getFirstCumulativeDeliveryQuantity() {
|
return firstCumulativeDeliveryQuantity;
|
}
|
|
public void setFirstCumulativeDeliveryQuantity(String firstCumulativeDeliveryQuantity) {
|
this.firstCumulativeDeliveryQuantity = firstCumulativeDeliveryQuantity;
|
}
|
|
public String getDeliveryOrderNo() {
|
return deliveryOrderNo;
|
}
|
|
public void setDeliveryOrderNo(String deliveryOrderNo) {
|
this.deliveryOrderNo = deliveryOrderNo;
|
}
|
|
public String getDeliveryQuantity() {
|
return deliveryQuantity;
|
}
|
|
public void setDeliveryQuantity(String deliveryQuantity) {
|
this.deliveryQuantity = deliveryQuantity;
|
}
|
|
public String getDeliveryDate() {
|
return deliveryDate;
|
}
|
|
public void setDeliveryDate(String deliveryDate) {
|
this.deliveryDate = deliveryDate;
|
}
|
|
public String getSigner() {
|
return signer;
|
}
|
|
public void setSigner(String signer) {
|
this.signer = signer;
|
}
|
}
|