123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.huimv.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import java.time.LocalDate;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <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;
- /**
- * 维修时间
- */
- private LocalDate maintainTime;
- /**
- * 备注
- */
- private Integer remark;
- private Integer farmId;
- private Integer deviceId;
- private String other1;
- private String other2;
- private byte[] other3;
- }
|