package org.jeecg.modules.eam.entity; import java.io.Serializable; import java.io.UnsupportedEncodingException; import java.util.Date; import java.math.BigDecimal; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableLogic; import lombok.Data; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import org.jeecgframework.poi.excel.annotation.Excel; import org.jeecg.common.aspect.annotation.Dict; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.EqualsAndHashCode; import lombok.experimental.Accessors; /** * @Description: 设备信息变更记录 * @Author: jeecg-boot * @Date: 2023-09-07 * @Version: V1.0 */ @Data @TableName("mom_eam_equipment_update_info") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_equipment_update_info对象", description="设备信息变更记录") public class EquipmentUpdateInfo implements Serializable { private static final long serialVersionUID = 1L; /**主键ID*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键ID") private java.lang.String id; /**维护类型(数据字典:equipment_update_type)*/ @Excel(name = "维护类型(数据字典:equipment_update_type)", width = 15) @ApiModelProperty(value = "维护类型(数据字典:equipment_update_type)") @Dict(dicCode = "equipment_update_type") private java.lang.String updateType; /**变更人*/ @Excel(name = "变更人", width = 15) @ApiModelProperty(value = "变更人") @Dict(dicCode = "id",dictTable = "sys_user",dicText = "realname") private java.lang.String updatePerson; /**变更日期*/ @Excel(name = "变更日期", width = 15, format = "yyyy-MM-dd HH:mm:ss") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "变更日期") private java.util.Date updateDate; /**设备ID*/ @Excel(name = "设备ID", width = 15) @ApiModelProperty(value = "设备ID") private java.lang.String equipmentId; /**旧abc标识*/ @Excel(name = "旧abc标识", width = 15) @ApiModelProperty(value = "旧abc标识") @Dict(dicCode = "ABC-standard-result") private java.lang.String oldAbcTag; /**新abc标识*/ @Excel(name = "新abc标识", width = 15) @ApiModelProperty(value = "新abc标识") @Dict(dicCode = "ABC-standard-result") private java.lang.String newAbcTag; /**旧质保开始日期*/ @Excel(name = "旧质保开始日期", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "旧质保开始日期") private java.util.Date oldStart; /**新质保开始日期*/ @Excel(name = "新质保开始日期", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "新质保开始日期") private java.util.Date newStart; /**旧质保结束日期*/ @Excel(name = "旧质保结束日期", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "旧质保结束日期") private java.util.Date oldEnd; /**新质保结束日期*/ @Excel(name = "新质保结束日期", width = 15, format = "yyyy-MM-dd") @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "新质保结束日期") private java.util.Date newEnd; @ApiModelProperty(value = "备注") private String remark; }