12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- 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_egg")
- public class EnvRegularCallEgg 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 LocalDateTime callDate;
- private Integer farmId;
- }
|