From ea3e40330575519d9a4c7dbe4f6d63e4a22ea861 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期二, 02 四月 2024 09:41:52 +0800 Subject: [PATCH] Revert "Revert "新考核"" --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultTemplate.java | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 176 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultTemplate.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultTemplate.java new file mode 100644 index 0000000..afa28c5 --- /dev/null +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultTemplate.java @@ -0,0 +1,176 @@ +package com.ycl.platform.domain.entity; + +import annotation.Excel; +import com.ycl.system.entity.BaseEntity; +import org.apache.commons.lang.builder.ToStringBuilder; +import org.apache.commons.lang.builder.ToStringStyle; + +/** + * 杩濈害瑙勫垯妯℃澘瀵硅薄 t_default_template + * + * @author ruoyi + * @date 2024-04-01 + */ +public class DefaultTemplate extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** */ + private Long id; + + /** 妯℃澘鍚嶇О */ + @Excel(name = "妯℃澘鍚嶇О") + private String templateName; + + /** 鍏宠仈杩愮淮鍏徃id */ + @Excel(name = "鍏宠仈杩愮淮鍏徃id") + private Long unitId; + + /** 瀹℃牳鐘舵�� */ + @Excel(name = "瀹℃牳鐘舵��") + private Long auditState; + + /** 鑰冩牳绫诲瀷 */ + @Excel(name = "鑰冩牳绫诲瀷") + private Long examineCategory; + + /** 鍚敤鐘舵�� */ + @Excel(name = "鍚敤鐘舵��") + private Long status; + + /** */ + @Excel(name = "") + private Long createUser; + + /** */ + @Excel(name = "") + private Long updateUser; + + /** */ + private String createUserName; + + /** */ + private String updateUserName; + + /** */ + private String deleted; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setTemplateName(String templateName) + { + this.templateName = templateName; + } + + public String getTemplateName() + { + return templateName; + } + public void setUnitId(Long unitId) + { + this.unitId = unitId; + } + + public Long getUnitId() + { + return unitId; + } + public void setAuditState(Long auditState) + { + this.auditState = auditState; + } + + public Long getAuditState() + { + return auditState; + } + public void setExamineCategory(Long examineCategory) + { + this.examineCategory = examineCategory; + } + + public Long getExamineCategory() + { + return examineCategory; + } + public void setStatus(Long status) + { + this.status = status; + } + + public Long getStatus() + { + return status; + } + public void setCreateUser(Long createUser) + { + this.createUser = createUser; + } + + public Long getCreateUser() + { + return createUser; + } + public void setUpdateUser(Long updateUser) + { + this.updateUser = updateUser; + } + + public Long getUpdateUser() + { + return updateUser; + } + public void setCreateUserName(String createUserName) + { + this.createUserName = createUserName; + } + + public String getCreateUserName() + { + return createUserName; + } + public void setUpdateUserName(String updateUserName) + { + this.updateUserName = updateUserName; + } + + public String getUpdateUserName() + { + return updateUserName; + } + public void setDeleted(String deleted) + { + this.deleted = deleted; + } + + public String getDeleted() + { + return deleted; + } + + @Override + public String toString() { + return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("templateName", getTemplateName()) + .append("unitId", getUnitId()) + .append("auditState", getAuditState()) + .append("examineCategory", getExamineCategory()) + .append("status", getStatus()) + .append("createTime", getCreateTime()) + .append("updateTime", getUpdateTime()) + .append("createUser", getCreateUser()) + .append("updateUser", getUpdateUser()) + .append("createUserName", getCreateUserName()) + .append("updateUserName", getUpdateUserName()) + .append("deleted", getDeleted()) + .toString(); + } +} -- Gitblit v1.8.0