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.
udi-wms-java/src/main/java/com/glxp/api/entity/purchase/SupCertRemindMsgEntity.java

104 lines
2.1 KiB
Java

This file contains ambiguous Unicode characters!

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.entity.purchase;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
/**
* 资质预警消息
*/
@Data
@TableName(value = "sup_cert_remind_msg")
public class SupCertRemindMsgEntity {
/**
* id
*/
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
/**
* 关联主键关联耗材字典ID生产企业ID供应商ID
*/
@TableField(value = "idFk")
private String idFk;
/**
* 资质证书编码
*/
@TableField(value = "code")
private String code;
/**
* 有效期
*/
@TableField(value = "vailDate")
private Date vailDate;
/**
* 失效期
*/
@TableField(value = "expireDate")
private Date expireDate;
/**
* 类型1供应商资质2生产企业资质3产品资质
*/
@TableField(value = "`type`")
private Integer type;
/**
* 状态1未确认2已确认
*/
@TableField(value = "`status`")
private Integer status;
/**
* 忽略状态0不忽略1忽略7天2忽略15天3忽略30天
*/
@TableField(value = "ignoreStatus")
private Integer ignoreStatus;
/**
* 预警消息
*/
@TableField(value = "msg")
private String msg;
/**
* 处理方式
*/
@TableField(value = "handleMsg")
private String handleMsg;
/**
* 下次预警时间
*/
@TableField(value = "nextRemindTime")
private Date nextRemindTime;
/**
* 创建时间
*/
@TableField(value = "createTime")
private Date createTime;
/**
* 更新时间
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
@TableField(value = "remindCount")
private int remindCount;
}