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; } }