From 24417dad13f370cca36f6f52208daa0404de4dd6 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 03 四月 2024 14:26:02 +0800 Subject: [PATCH] 新核算 --- ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultScore.java | 149 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 149 insertions(+), 0 deletions(-) diff --git a/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultScore.java b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultScore.java new file mode 100644 index 0000000..81e7b3f --- /dev/null +++ b/ycl-pojo/src/main/java/com/ycl/platform/domain/entity/DefaultScore.java @@ -0,0 +1,149 @@ +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; + +import java.math.BigDecimal; + +/** + * 鍚堝悓鎵撳垎瀵硅薄 t_default_score + * + * @author ruoyi + * @date 2024-04-01 + */ +public class DefaultScore extends BaseEntity +{ + private static final long serialVersionUID = 1L; + + /** */ + private Long id; + + /** 鍚堝悓鑰冩牳id */ + @Excel(name = "鍚堝悓鑰冩牳id") + private Long publishId; + + /** 妯℃澘id */ + @Excel(name = "妯℃澘id") + private Long templateId; + + /** 鍏蜂綋鏁伴噺銆佷釜鏁般�佸皬鏃舵暟 */ + @Excel(name = "鍏蜂綋鏁伴噺銆佷釜鏁般�佸皬鏃舵暟") + private String num; + + /** 鏍规嵁rule鐨勬墦鍒嗘柟寮忕粨鍚坱emplate鎵e垎绯绘暟鍜宯um,绯荤粺璁$畻鐨勫垎鏁� */ + @Excel(name = "鏍规嵁rule鐨勬墦鍒嗘柟寮忕粨鍚坱emplate鎵e垎绯绘暟鍜宯um,绯荤粺璁$畻鐨勫垎鏁�") + private BigDecimal score; + + /** */ + private Long createUser; + + /** */ + private String createUserName; + + /** */ + private Long updateUser; + + /** */ + private String updateUserName; + + public void setId(Long id) + { + this.id = id; + } + + public Long getId() + { + return id; + } + public void setPublishId(Long publishId) + { + this.publishId = publishId; + } + + public Long getPublishId() + { + return publishId; + } + public void setTemplateId(Long templateId) + { + this.templateId = templateId; + } + + public Long getTemplateId() + { + return templateId; + } + public void setNum(String num) + { + this.num = num; + } + + public String getNum() + { + return num; + } + public void setScore(BigDecimal score) + { + this.score = score; + } + + public BigDecimal getScore() + { + return score; + } + public void setCreateUser(Long createUser) + { + this.createUser = createUser; + } + + public Long getCreateUser() + { + return createUser; + } + public void setCreateUserName(String createUserName) + { + this.createUserName = createUserName; + } + + public String getCreateUserName() + { + return createUserName; + } + 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; + } + + @Override + public String toString() { + return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("publishId", getPublishId()) + .append("templateId", getTemplateId()) + .append("num", getNum()) + .append("score", getScore()) + .append("createUser", getCreateUser()) + .append("createUserName", getCreateUserName()) + .append("updateUser", getUpdateUser()) + .append("updateUserName", getUpdateUserName()) + .append("createTime", getCreateTime()) + .append("updateTime", getUpdateTime()) + .toString(); + } +} -- Gitblit v1.8.0