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.
75 lines
1.1 KiB
Java
75 lines
1.1 KiB
Java
package com.glxp.api.req.inv;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 添加库存预警设置参数
|
|
*/
|
|
@Data
|
|
public class AddInvRemindSetRequest {
|
|
|
|
private Integer id;
|
|
|
|
/**
|
|
* 耗材字典主键
|
|
*/
|
|
private String relId;
|
|
|
|
/**
|
|
* 规格型号
|
|
*/
|
|
private String ggxh;
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 仓库编码
|
|
*/
|
|
private String invCode;
|
|
|
|
/**
|
|
* 货位编码
|
|
*/
|
|
private String invSpaceCode;
|
|
|
|
/**
|
|
* 是否开启低库存预警
|
|
*/
|
|
private Boolean lowStock;
|
|
|
|
/**
|
|
* 是否开启库存负数预警
|
|
*/
|
|
private Boolean lackStock;
|
|
|
|
/**
|
|
* 是否开启库存积压预警
|
|
*/
|
|
private Boolean overStock;
|
|
|
|
/**
|
|
* 是否开启库存产品过期提醒
|
|
*/
|
|
private Boolean expireDate;
|
|
|
|
/**
|
|
* 是否开启近效期提醒
|
|
*/
|
|
private Boolean recentDate;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
/**
|
|
* 耗材字典ID集合
|
|
*/
|
|
private List<String> relIdList;
|
|
}
|