123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- package com.huimv.guowei.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 固定电子秤
- * </p>
- *
- * @author author
- * @since 2023-06-01
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_regular_call_feeding")
- public class EnvRegularCallFeeding implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 设备名称
- */
- private String callName;
- /**
- * 设备编码
- */
- private String callCode;
- /**
- * 鸭只编号
- */
- private String duckCode;
- /**
- * 采食重量 克
- */
- private Integer duckWeight;
- /**
- * 原始数据
- */
- private Integer duckFeedingOriginal;
- /**
- * 蛋个数
- */
- private Integer eggNum;
- /**
- * 称重日期
- */
- private LocalDateTime callDate;
- private Integer farmId;
- }
|