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.
udi-wms-java/src/main/java/com/glxp/api/res/collect/RelCodeBatchResponse.java

88 lines
1.2 KiB
Java

package com.glxp.api.res.collect;
import lombok.Data;
import java.util.Date;
@Data
public class RelCodeBatchResponse {
private Integer id;
/**
* 产品编码
*/
private String productCode;
/**
* 类型编码
*/
private String subTypeNo;
/**
* 包装比例
*/
private String cascadeRatio;
/**
* 包装规格
*/
private String packageSpec;
/**
* 备注
*/
private String comment;
/**
* 批次号
*/
private String batchNo;
/**
* 生产日期
*/
private Date madeDate;
/**
* 有效期至
*/
private Date validateDate;
/**
* 生产车间
*/
private String workShop;
/**
* 生产线
*/
private String lineName;
/**
* 负责人
*/
private String lineManager;
/**
* 产品名称,通用名称
*/
private String cpmctymc;
/**
* 包含下级数量
*/
private Integer bhxjsl;
/**
* 包装单位
*/
private String packUnit;
/**
* 包装级别
*/
private Integer packLayer;
private String erpId;
}