From 224428e399b4f4d46ddf3f15b2bbf426fb922e2c Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期五, 26 四月 2024 11:12:53 +0800 Subject: [PATCH] 考核结果指标详情页面 --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java | 151 ++++++++++--------------------------------------- 1 files changed, 32 insertions(+), 119 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java index f544566..17b08cf 100644 --- a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java @@ -1,19 +1,24 @@ package com.ycl.platform.domain.entity; import annotation.Excel; +import com.fasterxml.jackson.annotation.JsonFormat; import com.ycl.system.entity.BaseEntity; +import lombok.Data; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; +import org.springframework.format.annotation.DateTimeFormat; import java.math.BigDecimal; +import java.util.Date; /** * 鑰冩牳绉垎鏄庣粏瀵硅薄 t_check_score * * @author ruoyi - * @date 2024-04-01 + * @date 2024-04-22 */ -public class CheckScore extends BaseEntity +@Data +public class CheckScore { private static final long serialVersionUID = 1L; @@ -24,128 +29,36 @@ @Excel(name = "鍒嗗��") private BigDecimal score; - /** 鍖哄幙 */ + /** deptid */ @Excel(name = "鍖哄幙") private Long deptId; - /** 鑰冩牳 */ - @Excel(name = "鑰冩牳") - private Long publishId; + /** 鑰冩牳妯℃澘id */ + @Excel(name = "鑰冩牳妯℃澘id") + private Integer templateId; - /** 瑙勫垯 */ - @Excel(name = "瑙勫垯") - private Long ruleId; + /** 鑰冩牳鏍囩(鐪佸巺/甯傚眬) */ + @Excel(name = "鑰冩牳鏍囩(鐪佸巺/甯傚眬)") + private Integer examineTag; - /** 鑰冩牳绫诲瀷 */ - @Excel(name = "鑰冩牳绫诲瀷") - private Long examineCategory; + /** 鑰冩牳绫诲瀷(杞﹁締/浜鸿劯/瑙嗛) */ + @Excel(name = "鑰冩牳绫诲瀷(杞﹁締/浜鸿劯/瑙嗛)") + private Integer examineCategory; + /** 淇敼鏃堕棿 */ + @Excel(name = "淇敼鏃堕棿") + private Date updateTime; - /** */ - private Long updateUser; + /** 鍒涘缓鏃堕棿 */ + @Excel(name = "鍒涘缓鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd") + private Date createTime; + /** 淇敼浜� */ + @Excel(name = "淇敼浜�") + private Integer updateUser; + /** 鏄惁鍙戝竷 */ + @Excel(name = "鏄惁鍙戝竷") + private String publish; - /** */ - @Excel(name = "") - private String updateUserName; - - /** */ - @Excel(name = "") - private Long auditState; - - public void setId(Long id) - { - this.id = id; - } - - public Long getId() - { - return id; - } - public void setScore(BigDecimal score) - { - this.score = score; - } - - public BigDecimal getScore() - { - return score; - } - public void setDeptId(Long deptId) - { - this.deptId = deptId; - } - - public Long getDeptId() - { - return deptId; - } - public void setPublishId(Long publishId) - { - this.publishId = publishId; - } - - public Long getPublishId() - { - return publishId; - } - public void setRuleId(Long ruleId) - { - this.ruleId = ruleId; - } - - public Long getRuleId() - { - return ruleId; - } - public void setExamineCategory(Long examineCategory) - { - this.examineCategory = examineCategory; - } - - public Long getExamineCategory() - { - return examineCategory; - } - public void setUpdateUser(Long updateUser) - { - this.updateUser = updateUser; - } - - public Long getUpdateUser() - { - return updateUser; - } - public void setUpdateUserName(String updateUserName) - { - this.updateUserName = updateUserName; - } - - public String getUpdateUserName() - { - return updateUserName; - } - public void setAuditState(Long auditState) - { - this.auditState = auditState; - } - - public Long getAuditState() - { - return auditState; - } - - @Override - public String toString() { - return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) - .append("id", getId()) - .append("score", getScore()) - .append("deptId", getDeptId()) - .append("publishId", getPublishId()) - .append("ruleId", getRuleId()) - .append("examineCategory", getExamineCategory()) - .append("createTime", getCreateTime()) - .append("updateUser", getUpdateUser()) - .append("updateUserName", getUpdateUserName()) - .append("auditState", getAuditState()) - .toString(); - } + //鎶樼嚎鍥炬棩鏈熷弬鏁� + private String date; } -- Gitblit v1.8.0