123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- package com.ruoyi.project.system.domain;
- import java.util.Date;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.framework.aspectj.lang.annotation.Excel;
- import com.ruoyi.framework.web.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- /**
- * 预警管理负责人对象 t_alarm_principal
- *
- * @author ruoyi
- * @date 2020-12-30
- */
- public class TAlarmPrincipal extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 唯一标识id */
- private Long id;
- /** 预警类型ID */
- private Long typeId;
- /** 装置 */
- @Excel(name = "装置")
- private String plantCode;
- /** 负责人员工编号 */
- @Excel(name = "负责人员工编号")
- private String staffid;
- /** 负责人姓名 */
- @Excel(name = "负责人姓名")
- private String principalName;
- /** 负责人邮箱 */
- @Excel(name = "负责人邮箱")
- private String principalEmail;
- /** 删除标识 */
- private Long delFlag;
- /** 创建人
- */
- private String createrCode;
- /** 创建日期 */
- private Date createdate;
- /** 更新人 */
- private String updaterCode;
- /** 更新日期 */
- private Date updatedate;
- /** 部门编号 */
- private Long deptId;
- /** 部门名称 */
- @Excel(name = "部门名称")
- private String deptName;
- /** 备注 */
- private String remarks;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setTypeId(Long typeId)
- {
- this.typeId = typeId;
- }
- public Long getTypeId()
- {
- return typeId;
- }
- public void setPlantCode(String plantCode)
- {
- this.plantCode = plantCode;
- }
- public String getPlantCode()
- {
- return plantCode;
- }
- public void setStaffid(String staffid)
- {
- this.staffid = staffid;
- }
- public String getStaffid()
- {
- return staffid;
- }
- public void setPrincipalName(String principalName)
- {
- this.principalName = principalName;
- }
- public String getPrincipalName()
- {
- return principalName;
- }
- public void setPrincipalEmail(String principalEmail)
- {
- this.principalEmail = principalEmail;
- }
- public String getPrincipalEmail()
- {
- return principalEmail;
- }
- public void setDelFlag(Long delFlag)
- {
- this.delFlag = delFlag;
- }
- public Long getDelFlag()
- {
- return delFlag;
- }
- public void setCreaterCode(String createrCode)
- {
- this.createrCode = createrCode;
- }
- public String getCreaterCode()
- {
- return createrCode;
- }
- public void setCreatedate(Date createdate)
- {
- this.createdate = createdate;
- }
- public Date getCreatedate()
- {
- return createdate;
- }
- public void setUpdaterCode(String updaterCode)
- {
- this.updaterCode = updaterCode;
- }
- public String getUpdaterCode()
- {
- return updaterCode;
- }
- public void setUpdatedate(Date updatedate)
- {
- this.updatedate = updatedate;
- }
- public Date getUpdatedate()
- {
- return updatedate;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- public void setDeptName(String deptName)
- {
- this.deptName = deptName;
- }
- public String getDeptName()
- {
- return deptName;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("typeId", getTypeId())
- .append("plantCode", getPlantCode())
- .append("staffid", getStaffid())
- .append("principalName", getPrincipalName())
- .append("principalEmail", getPrincipalEmail())
- .append("delFlag", getDelFlag())
- .append("createrCode", getCreaterCode())
- .append("createdate", getCreatedate())
- .append("updaterCode", getUpdaterCode())
- .append("updatedate", getUpdatedate())
- .append("deptId", getDeptId())
- .append("remarks", getRemarks())
- .toString();
- }
- }
|