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.
87 lines
1.3 KiB
Java
87 lines
1.3 KiB
Java
package com.glxp.api.req.collect;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class RelCodeBatchRequest extends ListPageRequest {
|
|
|
|
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 Date createTime;
|
|
|
|
private String createUser;
|
|
|
|
private Date updateTime;
|
|
|
|
private String updateUser;
|
|
|
|
private String keyWords;
|
|
|
|
private List<RelCodeDetailRequest> detailList;
|
|
|
|
private String code;
|
|
private String startDate;
|
|
private String endDate;
|
|
}
|