From 83992498bec02aaf0175752abefff3281c31750b Mon Sep 17 00:00:00 2001 From: zhaoxianglong Date: Tue, 18 Jun 2024 15:24:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=9E=E4=BD=93=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/DcNoStakeWarningTable.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 zc-business/src/main/java/com/zc/business/domain/DcNoStakeWarningTable.java diff --git a/zc-business/src/main/java/com/zc/business/domain/DcNoStakeWarningTable.java b/zc-business/src/main/java/com/zc/business/domain/DcNoStakeWarningTable.java new file mode 100644 index 00000000..f2a28e6b --- /dev/null +++ b/zc-business/src/main/java/com/zc/business/domain/DcNoStakeWarningTable.java @@ -0,0 +1,32 @@ +package com.zc.business.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.ruoyi.common.annotation.Excel; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.util.Date; + +@Data +@ApiModel(value = "DcNoStakeWarningTable", description = "无桩号预警实体") +public class DcNoStakeWarningTable { + @ApiModelProperty("ID") + @Excel(name = "ID") + @TableId(value = "id", type = IdType.AUTO) + private Long id; + @ApiModelProperty("预警描述") + @Excel(name = "预警描述") + private Long warningDescription; + @ApiModelProperty("预警类型") + @Excel(name = "预警类型", readConverterExp = "1=交通流预警,2=气象预警") + private String warningType; + @ApiModelProperty("创建时间") + @Excel(name = "创建时间") + private Date createTime; + @ApiModelProperty("预警时间") + @Excel(name = "预警时间") + private Date warningTime; + +}