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.
48 lines
708 B
Java
48 lines
708 B
Java
package com.glxp.api.res.inout;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class ReceiveDetailResponse {
|
|
|
|
private Integer id;
|
|
|
|
/**
|
|
* 订单外键
|
|
*/
|
|
private String orderIdFk;
|
|
|
|
/**
|
|
* 产品ID
|
|
*/
|
|
private Integer relIdFk;
|
|
|
|
private String nameCode;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
private Integer count;
|
|
|
|
/**
|
|
* 供应商ID
|
|
*/
|
|
private String supId;
|
|
|
|
private String productDate;
|
|
|
|
private String batchNo;
|
|
|
|
private String expireDate;
|
|
|
|
|
|
private String cpmctymc;
|
|
private String ggxh;
|
|
private String zczbhhzbapzbh;
|
|
private String ylqxzcrbarmc;
|
|
private String manufactory;
|
|
private String measname;
|
|
private String price;
|
|
|
|
}
|