12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.ruoyi.rc.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 问卷章节对象 t_chap
- *
- * @author ruoyi
- * @date 2024-07-19
- */
- public class TChap extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** id */
- private Long id;
- /** 审计记录id */
- @Excel(name = "审计记录id")
- private Long auditId;
- /** 名称 */
- @Excel(name = "名称")
- private String name;
- /** 装置id */
- @Excel(name = "装置id")
- private Long deptId;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setAuditId(Long auditId)
- {
- this.auditId = auditId;
- }
- public Long getAuditId()
- {
- return auditId;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getName()
- {
- return name;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("auditId", getAuditId())
- .append("name", getName())
- .append("deptId", getDeptId())
- .toString();
- }
- }
|