From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001 From: 郑永安 <zyazyz250@sina.com> Date: 星期一, 19 六月 2023 14:22:45 +0800 Subject: [PATCH] 描述 --- src/main/java/com/gk/firework/Domain/WarnContentInfo.java | 179 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 179 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/gk/firework/Domain/WarnContentInfo.java b/src/main/java/com/gk/firework/Domain/WarnContentInfo.java new file mode 100644 index 0000000..8478ba6 --- /dev/null +++ b/src/main/java/com/gk/firework/Domain/WarnContentInfo.java @@ -0,0 +1,179 @@ +package com.gk.firework.Domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; + +import java.io.Serializable; +import java.util.Date; + +@ApiModel("报警内容类") +@TableName("warncontent") +public class WarnContentInfo implements Serializable { + @TableField(exist = false) + private static final long serialVersionUID = 1L; + + @TableId(type = IdType.AUTO) + private Long id; + + /** 警告类型 warntype **/ + private String warntype; + + /** 警告级别 warnlevel **/ + private String warnlevel; + + /**报警内容**/ + private String warncontent; + + /** 购买人id customid **/ + private Long customid; + + /** 企业id enterpriseid **/ + private Long enterpriseid; + + /** 是否处理 ismend **/ + private Byte ismend; + + /** 是否需要发送短信 isneed **/ + private Byte isneed; + + /** 是否发送短信 issend **/ + private Byte issend; + + /**查询周期**/ + private Integer period; + + @ApiModelProperty("创建时间") + private Date createddate; + + /** 更新人 modifiedby **/ + @ApiModelProperty("更新人") + private String modifiedby; + + /** 更新时间 modifieddate **/ + @ApiModelProperty("更新时间") + private Date modifieddate; + + /** id **/ + public Long getId() { + return id; + } + + /** id **/ + public void setId(Long id) { + this.id = id; + } + + /** 警告类型 warntype **/ + public String getWarntype() { + return warntype; + } + + /** 警告类型 warntype **/ + public void setWarntype(String warntype) { + this.warntype = warntype == null ? null : warntype.trim(); + } + + /** 警告级别 warnlevel **/ + public String getWarnlevel() { + return warnlevel; + } + + /** 警告级别 warnlevel **/ + public void setWarnlevel(String warnlevel) { + this.warnlevel = warnlevel == null ? null : warnlevel.trim(); + } + + /** 购买人id customid **/ + public Long getCustomid() { + return customid; + } + + /** 购买人id customid **/ + public void setCustomid(Long customid) { + this.customid = customid; + } + + /** 企业id enterpriseid **/ + public Long getEnterpriseid() { + return enterpriseid; + } + + /** 企业id enterpriseid **/ + public void setEnterpriseid(Long enterpriseid) { + this.enterpriseid = enterpriseid; + } + + /** 是否处理 ismend **/ + public Byte getIsmend() { + return ismend; + } + + /** 是否处理 ismend **/ + public void setIsmend(Byte ismend) { + this.ismend = ismend; + } + + /** 是否需要发送短信 isneed **/ + public Byte getIsneed() { + return isneed; + } + + /** 是否需要发送短信 isneed **/ + public void setIsneed(Byte isneed) { + this.isneed = isneed; + } + + /** 是否发送短信 issend **/ + public Byte getIssend() { + return issend; + } + + /** 是否发送短信 issend **/ + public void setIssend(Byte issend) { + this.issend = issend; + } + + public String getModifiedby() { + return modifiedby; + } + + public void setModifiedby(String modifiedby) { + this.modifiedby = modifiedby; + } + + public Date getModifieddate() { + return modifieddate; + } + + public void setModifieddate(Date modifieddate) { + this.modifieddate = modifieddate; + } + + public String getWarncontent() { + return warncontent; + } + + public void setWarncontent(String warncontent) { + this.warncontent = warncontent; + } + + public Integer getPeriod() { + return period; + } + + public void setPeriod(Integer period) { + this.period = period; + } + + public Date getCreateddate() { + return createddate; + } + + public void setCreateddate(Date createddate) { + this.createddate = createddate; + } +} -- Gitblit v1.9.2