From 456d71b59125b19b08a190d5679b0791d4239f80 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 07 三月 2024 15:23:04 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 166 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java new file mode 100644 index 0000000..76751b6 --- /dev/null +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/TCheckPublish.java @@ -0,0 +1,166 @@ +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_check_publish + * + * @author ruoyi + * @date 2024-03-07 + */ +public class TCheckPublish extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 涓婚敭 */ + private Long id; + + /** 鑰冩牳鍚� */ + @Excel(name = "鑰冩牳鍚�") + private String examineName; + + /** 鑰冩牳妯℃澘id */ + @Excel(name = "鑰冩牳妯℃澘id") + private Long templateId; + + /** 鑰冩牳鑼冨洿 1/2 鍒嗗眬/甯傚眬 */ + @Excel(name = "鑰冩牳鑼冨洿 1/2 鍒嗗眬/甯傚眬") + private Long examineRange; + + /** 鑰冩牳棰戠巼 1/2 鏈堝害鑰冩牳/瀛e害鑰冩牳 */ + @Excel(name = "鑰冩牳棰戠巼 1/2 鏈堝害鑰冩牳/瀛e害鑰冩牳") + private Long frequency; + + /** 鑰冩牳鐘舵�� 0/1 鍚敤 / 鍋滅敤 */ + @Excel(name = "鑰冩牳鐘舵�� 0/1 鍚敤 / 鍋滅敤") + private Long state; + + private Long createUser; + @Excel(name = "鍒涘缓浜�") + private String createUserName; + @Excel(name = "淇敼浜�") + private String updateUserName; + + private Long updateUser; + + /** 鎻忚堪 */ + @Excel(name = "鎻忚堪") + private String description; + + public String getExamineName() { + return examineName; + } + + public void setExamineName(String examineName) { + this.examineName = examineName; + } + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setTemplateId(Long templateId) + { + this.templateId = templateId; + } + + public Long getTemplateId() + { + return templateId; + } + + public Long getExamineRange() { + return examineRange; + } + + public void setExamineRange(Long examineRange) { + this.examineRange = examineRange; + } + + public String getCreateUserName() { + return createUserName; + } + + public void setCreateUserName(String createUserName) { + this.createUserName = createUserName; + } + + public String getUpdateUserName() { + return updateUserName; + } + + public void setUpdateUserName(String updateUserName) { + this.updateUserName = updateUserName; + } + + public void setFrequency(Long frequency) + { + this.frequency = frequency; + } + + public Long getFrequency() + { + return frequency; + } + public void setState(Long state) + { + this.state = state; + } + + public Long getState() + { + return state; + } + 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 setDescription(String description) + { + this.description = description; + } + + public String getDescription() + { + return description; + } + + @Override + public String toString() { + return "TCheckPublish{" + + "id=" + id + + ", examineName='" + examineName + '\'' + + ", templateId=" + templateId + + ", examineRange=" + examineRange + + ", frequency=" + frequency + + ", state=" + state + + ", createUser=" + createUser + + ", createUserName='" + createUserName + '\'' + + ", updateUserName='" + updateUserName + '\'' + + ", updateUser=" + updateUser + + ", description='" + description + '\'' + + '}'; + } +} -- Gitblit v1.8.0