1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 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 2024-08-23
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_threshold")
- public class EnvThreshold implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 温度上线
- */
- private String tempUpper;
- /**
- * 温度下限
- */
- private String tempDown;
- /**
- * 湿度上线
- */
- private String humUpper;
- /**
- * 湿度下限
- */
- private String humDown;
- /**
- * 氧气上线
- */
- private String oxygenUpper;
- /**
- * 氧气下限
- */
- private String oxygenDown;
- /**
- * 硫化氢上线
- */
- private String h2sUpper;
- /**
- * 硫化氢下限
- */
- private String h2sDown;
- /**
- * 光照上线
- */
- private String lightUpper;
- /**
- * 光照下限
- */
- private String lightDown;
- /**
- * 牧场编码
- */
- private Integer farmId;
- }
|