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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.res.inv ;
import lombok.Data ;
import java.util.Date ;
/**
* 库存预警消息VO
*/
@Data
public class InvRemindMsgResponse {
private Integer id ;
/**
* 关联主键ID
*/
private Integer relId ;
/**
* 批次号
*/
private String batchNo ;
/**
* 生产日期
*/
private String productionDate ;
/**
* 失效日期
*/
private String expireDate ;
/**
* 部门
*/
private String deptCode ;
/**
* 仓库号
*/
private String invCode ;
/**
* 货位号
*/
private String invSpaceCode ;
/**
* 进数量
*/
private Integer inCount ;
/**
* 出数量
*/
private Integer outCount ;
/**
* 结余数量
*/
private Integer reCount ;
/**
* 消息状态: 1:未确认; 2: 已确认
*/
private Integer status ;
/**
* 预警类型: 1: 库存不足预警; 2: 库存负数预警; 3: 库存积压预警; 4: 库存过期预警; 5: 库存近效期预警
*/
private Integer type ;
/**
* 备注
*/
private String remark ;
/**
* 产品名称
*/
private String productName ;
/**
* 仓库名称
*/
private String invName ;
/**
* 货位名称
*/
private String invSpaceName ;
/**
* 预警消息内容
*/
private String msg ;
/**
* 处理方式
*/
private String handleMsg ;
/**
* 下次提醒时间
*/
private Date nextRemindTime ;
/**
* 消息忽略状态: 0: 不忽略; 1: 忽略7天; 2: 忽略15天; 3: 忽略30天
*/
private Integer ignoreStatus ;
/**
* 规格型号
*/
private String ggxh ;
/**
* 供应商名称
*/
private String supName ;
/**
* 生产厂家
*/
private String manufactory ;
/**
* 批注文号
*/
private String zczbhhzbapzbh ;
private int remindCount ;
}