1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.huimv.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- 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-14
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("energy_water")
- public class EnergyWater implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 计录值
- */
- private String waterValue;
- /**
- * 原始值
- */
- private String originalValue;
- /**
- * 原始数据
- */
- private String originalDate;
- /**
- * 房舍id
- */
- private Integer unitId;
- private Integer farmId;
- private String other1;
- private String other2;
- private String other3;
- }
|