package org.jeecg.modules.dry.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: dry_maintenance_record * @Author: jeecg-boot * @Date: 2025-07-21 * @Version: V1.0 */ @Data @TableName("dry_maintenance_record") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="dry_maintenance_record对象", description="dry_maintenance_record") public class DryMaintenanceRecord implements Serializable { private static final long serialVersionUID = 1L; /**主键ID*/ @TableId(type = IdType.ASSIGN_ID) @ApiModelProperty(value = "主键ID") private Integer id; /**保养编号*/ @Excel(name = "保养编号", width = 15) @ApiModelProperty(value = "保养编号") private String planNumber; /**设备编号*/ @Excel(name = "设备编号", width = 15, dictTable = "dry_equipment", dicText = "name", dicCode = "id") @Dict(dictTable = "dry_equipment", dicText = "name", dicCode = "id") @ApiModelProperty(value = "设备编号") private String equipmentId; /**保养周期*/ @Excel(name = "保养周期", width = 15) @ApiModelProperty(value = "保养周期") private String cycle; /**保养时间*/ @Excel(name = "保养时间", width = 20, 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 maintDate; /**保养人员*/ @Excel(name = "保养人员", width = 15) @ApiModelProperty(value = "保养人员") private String technician; /**保养内容*/ @Excel(name = "保养内容", width = 15) @ApiModelProperty(value = "保养内容") private String content; /**备件使用情况*/ @Excel(name = "备件使用情况", width = 15) @ApiModelProperty(value = "备件使用情况") private String spareParts; /**备注*/ @Excel(name = "备注", width = 15) @ApiModelProperty(value = "备注") private String remark; /**创建人*/ @ApiModelProperty(value = "创建人") private String createBy; /**创建日期*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "创建日期") private Date createTime; /**更新人*/ @ApiModelProperty(value = "更新人") private String updateBy; /**更新日期*/ @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") @DateTimeFormat(pattern="yyyy-MM-dd") @ApiModelProperty(value = "更新日期") private Date updateTime; }