From 23b7eef243762c01e03c2f621b59789003ab09ad Mon Sep 17 00:00:00 2001 From: guo Date: Fri, 3 Nov 2023 17:38:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B0=B4=E7=A8=B3=E6=8B=8C=E5=90=88=E7=AB=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StableWaterMixStationExceedData.java | 145 ++++++++++++++++++ 1 file changed, 145 insertions(+) create mode 100644 src/main/java/com/zhgd/xmgl/modules/stablewater/entity/StableWaterMixStationExceedData.java diff --git a/src/main/java/com/zhgd/xmgl/modules/stablewater/entity/StableWaterMixStationExceedData.java b/src/main/java/com/zhgd/xmgl/modules/stablewater/entity/StableWaterMixStationExceedData.java new file mode 100644 index 000000000..ab704d4ed --- /dev/null +++ b/src/main/java/com/zhgd/xmgl/modules/stablewater/entity/StableWaterMixStationExceedData.java @@ -0,0 +1,145 @@ +package com.zhgd.xmgl.modules.stablewater.entity; + +import java.io.Serializable; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +/** + * @Description: 水稳拌合站超标数据 + * @author: pds + * @date: 2023-11-03 + * @version: V1.0 + */ +@Data +@TableName("stable_water_mix_station_exceed_data") +@ApiModel(value = "StableWaterMixStationExceedData实体类", description = "StableWaterMixStationExceedData") +public class StableWaterMixStationExceedData implements Serializable { + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "主键id") + private java.lang.Long id; + /** + * 设备sn + */ + @Excel(name = "设备sn", width = 15) + @ApiModelProperty(value = "设备sn") + private java.lang.String devSn; + /** + * 结果时间 + */ + @Excel(name = "结果时间", width = 15) + @ApiModelProperty(value = "结果时间") + private java.lang.String resultDate; + /** + * 骨料 1 + */ + @Excel(name = "骨料 1", width = 15) + @ApiModelProperty(value = "骨料 1") + private java.lang.String aggregate1; + /** + * 骨料 2 + */ + @Excel(name = "骨料 2", width = 15) + @ApiModelProperty(value = "骨料 2") + private java.lang.String aggregate2; + /** + * 骨料 3 + */ + @Excel(name = "骨料 3", width = 15) + @ApiModelProperty(value = "骨料 3") + private java.lang.String aggregate3; + /** + * 骨料 4 + */ + @Excel(name = "骨料 4", width = 15) + @ApiModelProperty(value = "骨料 4") + private java.lang.String aggregate4; + /** + * 骨料 5 + */ + @Excel(name = "骨料 5", width = 15) + @ApiModelProperty(value = "骨料 5") + private java.lang.String aggregate5; + /** + * 粉料 1 + */ + @Excel(name = "粉料 1", width = 15) + @ApiModelProperty(value = "粉料 1") + private java.lang.String powder1; + /** + * 粉料 2 + */ + @Excel(name = "粉料 2", width = 15) + @ApiModelProperty(value = "粉料 2") + private java.lang.String powder2; + /** + * 水稳信息编号 + */ + @Excel(name = "水稳信息编号", width = 15) + @ApiModelProperty(value = "水稳信息编号") + private java.lang.String waterStabilityInfoCode; + /** + * 类型 + */ + @Excel(name = "类型", width = 15) + @ApiModelProperty(value = "类型") + private java.lang.String type; + /** + * 唯一码 + */ + @Excel(name = "唯一码", width = 15) + @ApiModelProperty(value = "唯一码") + private java.lang.String ukey; + /** + * 超标等级(1:一级,2:二级, 3:三级 ) + */ + @Excel(name = "超标等级(1:一级,2:二级, 3:三级 )", width = 15) + @ApiModelProperty(value = "超标等级(1:一级,2:二级, 3:三级 )") + private java.lang.Integer overproofGrade; + /** + * 超标原因(不能为 null 或‘’ ) + */ + @Excel(name = "超标原因(不能为 null 或‘’ )", width = 15) + @ApiModelProperty(value = "超标原因(不能为 null 或‘’ )") + private java.lang.String overproofReason; + /** + * 报告地址 + */ + @Excel(name = "报告地址", width = 15) + @ApiModelProperty(value = "报告地址") + private java.lang.String reportAddress; + /** + * 项目sn + */ + @Excel(name = "项目sn", width = 15) + @ApiModelProperty(value = "项目sn") + private java.lang.String projectSn; + /** + * 创建时间 yyyy-MM-dd HH:mm:ss + */ + @Excel(name = "创建时间 yyyy-MM-dd HH:mm:ss", width = 20, format = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "创建时间 yyyy-MM-dd HH:mm:ss") + private java.util.Date createDate; + /** + * 更新时间 yyyy-MM-dd HH:mm:ss + */ + @Excel(name = "更新时间 yyyy-MM-dd HH:mm:ss", width = 20, format = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + @ApiModelProperty(value = "更新时间 yyyy-MM-dd HH:mm:ss") + private java.util.Date updateDate; +}