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.purchase ;
import com.fasterxml.jackson.annotation.JsonFormat ;
import lombok.Data ;
import java.util.Date ;
/**
* 资质预警信息VO
*/
@Data
public class SupCertRemindMsgResponse {
/**
* id
*/
private Integer id ;
/**
* 关联主键, 关联耗材字典ID, 生产企业ID, 供应商ID
*/
private String idFk ;
/**
* 证书编码
*/
private String code ;
/**
* 有效期
*/
@JsonFormat ( pattern = "yyyy-MM-dd" )
private Date vailDate ;
/**
* 失效期
*/
@JsonFormat ( pattern = "yyyy-MM-dd" )
private Date expireDate ;
/**
* 类型( 1: 供应商资质; 2: 生产企业资质; 3: 产品资质; )
*/
private Integer type ;
/**
* 状态( 1: 未确认; 2: 已确认; )
*/
private Integer status ;
/**
* 忽略状态( 0: 不忽略; 1: 忽略7天; 2: 忽略15天; 3: 忽略30天; )
*/
private Integer ignoreStatus ;
/**
* 预警消息
*/
private String msg ;
/**
* 处理方式
*/
private String handleMsg ;
/**
* 下次预警时间
*/
private Date nextRemindTime ;
/**
* 创建时间
*/
private Date createTime ;
/**
* 更新时间
*/
private Date updateTime ;
/**
* 备注
*/
private String remark ;
/**
* 名称,耗材名称/生产企业名称/供应商名称
*/
private String name ;
/**
* 资质证书名称
*/
private String certName ;
/**
* 提醒次数
*/
private int remindCount ;
}