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-spms-java/src/main/java/com/glxp/api/entity/dev/DeviceAssetCertEntity.java

107 lines
2.2 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.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;
}