EnvDeviceMaintain.java 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.huimv.admin.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import java.time.LocalDate;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. * 设备维修记录
  13. * </p>
  14. *
  15. * @author author
  16. * @since 2023-02-13
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. @TableName("env_device_maintain")
  22. public class EnvDeviceMaintain implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 维修内容
  28. */
  29. private String maintainContent;
  30. /**
  31. * 维修时间
  32. */
  33. private LocalDate maintainTime;
  34. /**
  35. * 备注
  36. */
  37. private Integer remark;
  38. private Integer farmId;
  39. private Integer deviceId;
  40. private String other1;
  41. private String other2;
  42. private byte[] other3;
  43. }