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.
55 lines
1.2 KiB
Java
55 lines
1.2 KiB
Java
package com.glxp.api.res.purchase;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
public class PurOrderDetailResponse {
|
|
|
|
private String id;
|
|
private String orderIdFk;
|
|
private String productId;
|
|
private String productName;
|
|
private String spec;
|
|
private String batchNo;
|
|
private String expireDate;
|
|
private String productDate;
|
|
private Integer count;
|
|
private int reCount;
|
|
private int planCount;
|
|
private Integer sweepCount;
|
|
private String ylqxzcrbarmc;
|
|
private String zczbhhzbapzbh;
|
|
private BigDecimal price;
|
|
private String relId;
|
|
|
|
//销售清单号(第二票)
|
|
private String secSalesListNo;
|
|
|
|
//销售发票号(第一票)
|
|
private String firstSalesInvNo;
|
|
|
|
//销售发票号(第二票)
|
|
private String secSalesInvNo;
|
|
|
|
//开票日期
|
|
private String invoiceDate;
|
|
private String manufactory;
|
|
private boolean allowNoBatch;
|
|
|
|
private String code;
|
|
private String serialNo;
|
|
|
|
private Integer codeId;
|
|
|
|
private int acceptCount;
|
|
private String measname;
|
|
private String supId;
|
|
|
|
private String supName;
|
|
|
|
private String billNo;
|
|
private String nameCode;
|
|
}
|