You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
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 String warningDescription;
|
|
@ApiModelProperty("预警类型")
|
|
@Excel(name = "预警类型", readConverterExp = "1=交通流预警,2=气象预警")
|
|
private String warningType;
|
|
@ApiModelProperty("创建时间")
|
|
@Excel(name = "创建时间")
|
|
private Date createTime;
|
|
@ApiModelProperty("预警时间")
|
|
@Excel(name = "预警时间")
|
|
private Date warningTime;
|
|
@ApiModelProperty("其他配置")
|
|
@Excel(name = "其他配置")
|
|
private String otherConfig;
|
|
}
|
|
|