123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.huimv.env.common.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 设备维修记录
- * </p>
- *
- * @author author
- * @since 2023-02-13
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_device_maintain")
- public class EnvDeviceMaintain implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 维修内容
- */
- private String maintainContent;
- /**
- * 维修时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" ,timezone = "GMT+8")
- private Date maintainTime;
- /**
- * 备注
- */
- private String remark;
- private Integer farmId;
- private String deviceId;
- private String other1;
- private String other2;
- private byte[] other3;
- }
|