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.
94 lines
1.4 KiB
Java
94 lines
1.4 KiB
Java
2 years ago
|
package com.glxp.api.res.inv;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 库存设置VO
|
||
|
*/
|
||
|
@Data
|
||
|
public class InvRemindSetResponse {
|
||
|
|
||
|
private Integer id;
|
||
|
|
||
|
/**
|
||
|
* 耗材字典主键
|
||
|
*/
|
||
|
private String relId;
|
||
|
|
||
|
/**
|
||
|
* 部门编码
|
||
|
*/
|
||
|
private String deptCode;
|
||
|
|
||
|
/**
|
||
|
* 仓库编码
|
||
|
*/
|
||
|
private String invCode;
|
||
|
|
||
|
/**
|
||
|
* 货位编码
|
||
|
*/
|
||
|
private String invSpaceCode;
|
||
|
|
||
|
/**
|
||
|
* 是否开启低库存预警
|
||
|
*/
|
||
|
private Boolean lowStock;
|
||
|
|
||
|
/**
|
||
|
* 库存低于多少数量时预警
|
||
|
*/
|
||
|
private Integer lowStockNum;
|
||
|
|
||
|
/**
|
||
|
* 是否开启库存负数预警
|
||
|
*/
|
||
|
private Boolean lackStock;
|
||
|
|
||
|
/**
|
||
|
* 是否开启库存积压预警
|
||
|
*/
|
||
|
private Boolean overStock;
|
||
|
|
||
|
/**
|
||
|
* 库存高于多少数量时预警
|
||
|
*/
|
||
|
private Integer overStockNum;
|
||
|
|
||
|
/**
|
||
|
* 是否开启库存产品过期提醒
|
||
|
*/
|
||
|
private Boolean expireDate;
|
||
|
|
||
|
/**
|
||
|
* 是否开启近效期提醒
|
||
|
*/
|
||
|
private Boolean recentDate;
|
||
|
|
||
|
/**
|
||
|
* 近效期达到多少天时提醒
|
||
|
*/
|
||
|
private Integer recentDateDay;
|
||
|
|
||
|
/**
|
||
|
* 备注
|
||
|
*/
|
||
|
private String remark;
|
||
|
|
||
|
/**
|
||
|
* 产品名称
|
||
|
*/
|
||
|
private String productName;
|
||
|
|
||
|
/**
|
||
|
* 仓库名称
|
||
|
*/
|
||
|
private String invName;
|
||
|
|
||
|
/**
|
||
|
* 货位名称
|
||
|
*/
|
||
|
private String invSpaceName;
|
||
|
|
||
|
}
|