|
|
package com.glxp.api.entity.dev;
|
|
|
|
|
|
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 com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.time.LocalDate;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Data
|
|
|
@TableName(value = "device_asset_cert")
|
|
|
public class DeviceAssetCertEntity implements Serializable {
|
|
|
/**
|
|
|
* 注意要用雪花ID
|
|
|
*/
|
|
|
@TableId(value = "id", type = IdType.INPUT)
|
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
|
* 设备资产编码外键
|
|
|
*/
|
|
|
@TableField(value = "devCodeFk")
|
|
|
private String devCodeFk;
|
|
|
|
|
|
/**
|
|
|
* 证书名称
|
|
|
*/
|
|
|
@TableField(value = "`name`")
|
|
|
private String name;
|
|
|
|
|
|
/**
|
|
|
* 证书编码
|
|
|
*/
|
|
|
@TableField(value = "code")
|
|
|
private String code;
|
|
|
|
|
|
/**
|
|
|
* 文件路径
|
|
|
*/
|
|
|
@TableField(value = "filePath")
|
|
|
private String filePath;
|
|
|
|
|
|
/**
|
|
|
* 生效期
|
|
|
*/
|
|
|
@TableField(value = "vailDate")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate vailDate;
|
|
|
|
|
|
/**
|
|
|
* 失效期
|
|
|
*/
|
|
|
@TableField(value = "expireDate")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private LocalDate expireDate;
|
|
|
|
|
|
/**
|
|
|
* 证书状态
|
|
|
*/
|
|
|
@TableField(value = "`status`")
|
|
|
private Integer status;
|
|
|
|
|
|
/**
|
|
|
* 证书类型(1:资质证书;2:技术材料)
|
|
|
*/
|
|
|
@TableField(value = "`type`")
|
|
|
private Integer type;
|
|
|
|
|
|
/**
|
|
|
* 备注说明
|
|
|
*/
|
|
|
@TableField(value = "remark")
|
|
|
private String remark;
|
|
|
|
|
|
/**
|
|
|
* 创建人
|
|
|
*/
|
|
|
@TableField(value = "`createUser`")
|
|
|
private String createUser;
|
|
|
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
@TableField(value = "createTime")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
|
* 更新人
|
|
|
*/
|
|
|
@TableField(value = "updateUser")
|
|
|
private String updateUser;
|
|
|
|
|
|
/**
|
|
|
* 更新时间
|
|
|
*/
|
|
|
@TableField(value = "updateTime")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
private Date updateTime;
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
}
|