From 569e8be78cc357147a403daa1af8dfe6dd7d5308 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 18 八月 2026 18:22:10 +0800
Subject: [PATCH] 1.处理药品宣教的问题 2.处理南华满意度的功能 3.处理随访导出的问题 4.处理南华短信的问题
---
smartor/src/main/java/com/smartor/domain/SvyFinish.java | 169 +------------------------------------------------------
1 files changed, 5 insertions(+), 164 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/SvyFinish.java b/smartor/src/main/java/com/smartor/domain/SvyFinish.java
index 9287042..f362773 100644
--- a/smartor/src/main/java/com/smartor/domain/SvyFinish.java
+++ b/smartor/src/main/java/com/smartor/domain/SvyFinish.java
@@ -1,8 +1,8 @@
package com.smartor.domain;
-import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
@@ -10,10 +10,11 @@
/**
* 闂嵎鏈�缁堢粨鏋滃璞� svy_finish
- *
+ *
* @author ruoyi
* @date 2023-03-03
*/
+@Data
public class SvyFinish extends BaseEntity
{
private static final long serialVersionUID = 1L;
@@ -39,7 +40,7 @@
/** 鎬诲緱鍒� */
@Excel(name = " 鎬诲緱鍒� ")
- private BigDecimal totalscore;
+ private String totalscore;
/** 鍙嶉缁撴灉鍐呭 */
@Excel(name = " 鍙嶉缁撴灉鍐呭 ")
@@ -51,7 +52,7 @@
/** 灞曠ず寰楀垎 */
@Excel(name = " 灞曠ず寰楀垎 ")
- private Long isshowscore;
+ private String isshowscore;
/** 璁″垝ID */
@Excel(name = " 璁″垝ID ")
@@ -74,164 +75,4 @@
/** 涓婁紶鏃堕棿 */
private Date uploadTime;
- public void setId(Long id)
- {
- this.id = id;
- }
-
- public Long getId()
- {
- return id;
- }
- public void setPatid(Long patid)
- {
- this.patid = patid;
- }
-
- public Long getPatid()
- {
- return patid;
- }
- public void setSchemeid(Long schemeid)
- {
- this.schemeid = schemeid;
- }
-
- public Long getSchemeid()
- {
- return schemeid;
- }
- public void setSvytitle(String svytitle)
- {
- this.svytitle = svytitle;
- }
-
- public String getSvytitle()
- {
- return svytitle;
- }
- public void setSvyid(Long svyid)
- {
- this.svyid = svyid;
- }
-
- public Long getSvyid()
- {
- return svyid;
- }
- public void setTotalscore(BigDecimal totalscore)
- {
- this.totalscore = totalscore;
- }
-
- public BigDecimal getTotalscore()
- {
- return totalscore;
- }
- public void setResultcontent(String resultcontent)
- {
- this.resultcontent = resultcontent;
- }
-
- public String getResultcontent()
- {
- return resultcontent;
- }
- public void setOrgid(String orgid)
- {
- this.orgid = orgid;
- }
-
- public String getOrgid()
- {
- return orgid;
- }
- public void setIsshowscore(Long isshowscore)
- {
- this.isshowscore = isshowscore;
- }
-
- public Long getIsshowscore()
- {
- return isshowscore;
- }
- public void setSchemeplanid(Long schemeplanid)
- {
- this.schemeplanid = schemeplanid;
- }
-
- public Long getSchemeplanid()
- {
- return schemeplanid;
- }
- public void setSchemetaskid(Long schemetaskid)
- {
- this.schemetaskid = schemetaskid;
- }
-
- public Long getSchemetaskid()
- {
- return schemetaskid;
- }
- public void setIsabnormal(Long isabnormal)
- {
- this.isabnormal = isabnormal;
- }
-
- public Long getIsabnormal()
- {
- return isabnormal;
- }
- public void setDelFlag(String delFlag)
- {
- this.delFlag = delFlag;
- }
-
- public String getDelFlag()
- {
- return delFlag;
- }
- public void setIsupload(Long isupload)
- {
- this.isupload = isupload;
- }
-
- public Long getIsupload()
- {
- return isupload;
- }
- public void setUploadTime(Date uploadTime)
- {
- this.uploadTime = uploadTime;
- }
-
- public Date getUploadTime()
- {
- return uploadTime;
- }
-
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("patid", getPatid())
- .append("schemeid", getSchemeid())
- .append("svytitle", getSvytitle())
- .append("svyid", getSvyid())
- .append("totalscore", getTotalscore())
- .append("resultcontent", getResultcontent())
- .append("orgid", getOrgid())
- .append("isshowscore", getIsshowscore())
- .append("schemeplanid", getSchemeplanid())
- .append("schemetaskid", getSchemetaskid())
- .append("isabnormal", getIsabnormal())
- .append("delFlag", getDelFlag())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("isupload", getIsupload())
- .append("uploadTime", getUploadTime())
- .toString();
- }
}
--
Gitblit v1.9.3