From ffe9c08011d25c39880d107a5f3de249d309c1b4 Mon Sep 17 00:00:00 2001 From: qushaowei <qushaowei@163.com> Date: 星期一, 13 十一月 2023 12:37:56 +0800 Subject: [PATCH] Merge branch 'master' of http://117.34.109.166:18448/r/mdc_430 into develop --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentThreshold.java | 61 ++++++++++++++++++++++++++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentThreshold.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentThreshold.java new file mode 100644 index 0000000..f21a23f --- /dev/null +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcEquipmentThreshold.java @@ -0,0 +1,61 @@ +package org.jeecg.modules.mdc.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; +import org.jeecg.common.system.base.entity.JeecgEntity; +import org.jeecgframework.poi.excel.annotation.Excel; + +import java.io.Serializable; + +/** + * @Description: 璁惧鍙傛暟闃堝�艰〃 + * @Author: Lius + * @Date: 2023-11-08 + * @Version: V1.0 + */ +@Data +@TableName("mdc_equipment_threshold") +@EqualsAndHashCode(callSuper = false) +@Accessors(chain = true) +@ApiModel(value = "mdc_equipment_threshold瀵硅薄", description = "璁惧鍙傛暟闃堝�艰〃") +public class MdcEquipmentThreshold extends JeecgEntity implements Serializable { + + private static final long serialVersionUID = 8899682324080635365L; + + /** + * 鎺у埗绯荤粺绫诲瀷 + */ + @Excel(name = "鎺у埗绯荤粺绫诲瀷", width = 15) + @ApiModelProperty(value = "鎺у埗绯荤粺绫诲瀷") + private String controlSystemType; + /** + * 涓枃鍚嶇О + */ + @Excel(name = "涓枃鍚嶇О", width = 15) + @ApiModelProperty(value = "涓枃鍚嶇О") + private String chineseName; + /** + * 鑻辨枃鍚嶇О + */ + @Excel(name = "鑻辨枃鍚嶇О", width = 15) + @ApiModelProperty(value = "鑻辨枃鍚嶇О") + private String englishName; + /** + * 涓婇檺 + */ + @Excel(name = "涓婇檺", width = 15) + @ApiModelProperty(value = "涓婇檺") + private Integer maxThreshold; + /** + * 涓嬮檺 + */ + @Excel(name = "涓嬮檺", width = 15) + @ApiModelProperty(value = "涓嬮檺") + private Integer minThreshold; + + +} -- Gitblit v1.9.3