You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
192 lines
4.6 KiB
Java
192 lines
4.6 KiB
Java
package com.glxp.api.res.thrsys;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class ThrOrderResponse {
|
|
private Integer id;
|
|
private String billNo;
|
|
private String billdate;
|
|
private String corpId;
|
|
private String corpName;
|
|
private String billType;
|
|
private String billFlag;
|
|
private String originType;
|
|
private String locStorageCode;
|
|
private String invWarehouseCode;//当前分库
|
|
private String fromSubInvCode; //往来分库
|
|
|
|
private String thirdSysFk;
|
|
|
|
private List<ThrOrderResponse.SubErpOrder> subErpOrders;
|
|
|
|
//增加字段
|
|
private String startDate; //起始日期
|
|
private String endDate; //结束日期
|
|
private String createUser; //创建人
|
|
private String reviewUser; //审核人
|
|
private String address; //地址
|
|
private String linkMan; //联系人
|
|
private String linkTel; //联系电话
|
|
private String remark; //备注
|
|
private String remark1; //备注1
|
|
private String remark2; //备注2
|
|
private String remark3; //备注3
|
|
private String invWarehouseName;
|
|
private String fromSubInvName;
|
|
private String billTypeName;
|
|
|
|
public static class SubErpOrder {
|
|
private Integer id;
|
|
private String productId;
|
|
private String productName;
|
|
private String spec;
|
|
private String batchNo;
|
|
private String expireDate;
|
|
private String productDate;
|
|
private int count; //账面数量
|
|
private int reCount; //实际数量
|
|
private String orderIdFk;
|
|
private String thirdSysFk;
|
|
private String sweepCount;
|
|
private String relId; //基础信息关联表主键
|
|
|
|
private String detailId; //明细ID
|
|
private String corpName; //往来单位
|
|
private BigDecimal price; //单价
|
|
public String getDetailId() {
|
|
return detailId;
|
|
}
|
|
|
|
public void setDetailId(String detailId) {
|
|
this.detailId = detailId;
|
|
}
|
|
|
|
public String getCorpName() {
|
|
return corpName;
|
|
}
|
|
|
|
public void setCorpName(String corpName) {
|
|
this.corpName = corpName;
|
|
}
|
|
|
|
public BigDecimal getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(BigDecimal price) {
|
|
this.price = price;
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getOrderIdFk() {
|
|
return orderIdFk;
|
|
}
|
|
|
|
public void setOrderIdFk(String orderIdFk) {
|
|
this.orderIdFk = orderIdFk;
|
|
}
|
|
|
|
public String getThirdSysFk() {
|
|
return thirdSysFk;
|
|
}
|
|
|
|
public void setThirdSysFk(String thirdSysFk) {
|
|
this.thirdSysFk = thirdSysFk;
|
|
}
|
|
|
|
public String getProductId() {
|
|
return productId;
|
|
}
|
|
|
|
public void setProductId(String productId) {
|
|
this.productId = productId;
|
|
}
|
|
|
|
public String getProductName() {
|
|
return productName;
|
|
}
|
|
|
|
public void setProductName(String productName) {
|
|
this.productName = productName;
|
|
}
|
|
|
|
public String getSpec() {
|
|
return spec;
|
|
}
|
|
|
|
public void setSpec(String spec) {
|
|
this.spec = spec;
|
|
}
|
|
|
|
public String getBatchNo() {
|
|
return batchNo;
|
|
}
|
|
|
|
public void setBatchNo(String batchNo) {
|
|
this.batchNo = batchNo;
|
|
}
|
|
|
|
public String getExpireDate() {
|
|
return expireDate;
|
|
}
|
|
|
|
public void setExpireDate(String expireDate) {
|
|
this.expireDate = expireDate;
|
|
}
|
|
|
|
public String getProductDate() {
|
|
return productDate;
|
|
}
|
|
|
|
public void setProductDate(String productDate) {
|
|
this.productDate = productDate;
|
|
}
|
|
|
|
public Integer getCount() {
|
|
return count;
|
|
}
|
|
|
|
public void setCount(Integer count) {
|
|
this.count = count;
|
|
}
|
|
|
|
public int getReCount() {
|
|
return reCount;
|
|
}
|
|
|
|
public void setReCount(int reCount) {
|
|
this.reCount = reCount;
|
|
}
|
|
|
|
public String getSweepCount() {
|
|
return sweepCount;
|
|
}
|
|
|
|
public void setSweepCount(String sweepCount) {
|
|
this.sweepCount = sweepCount;
|
|
}
|
|
|
|
public String getRelId() {
|
|
return relId;
|
|
}
|
|
|
|
public void setRelId(String relId) {
|
|
this.relId = relId;
|
|
}
|
|
}
|
|
|
|
|
|
}
|