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/SvyLibResult.java | 160 ++++++++++++-----------------------------------------
1 files changed, 36 insertions(+), 124 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/SvyLibResult.java b/smartor/src/main/java/com/smartor/domain/SvyLibResult.java
index c030e18..6fe9fc5 100644
--- a/smartor/src/main/java/com/smartor/domain/SvyLibResult.java
+++ b/smartor/src/main/java/com/smartor/domain/SvyLibResult.java
@@ -1,7 +1,9 @@
package com.smartor.domain;
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;
@@ -9,161 +11,71 @@
/**
* 闂嵎缁撴灉瀵硅薄 svy_lib_result
- *
+ *
* @author ruoyi
* @date 2023-03-02
*/
-public class SvyLibResult extends BaseEntity
-{
+@Data
+public class SvyLibResult extends BaseEntity {
private static final long serialVersionUID = 1L;
- /** 鑷ID */
+ /**
+ * 鑷ID
+ */
private Long resultid;
- /** 闂嵎ID */
+ /**
+ * 闂嵎ID
+ */
@Excel(name = " 闂嵎ID ")
private Long svyid;
- /** 缁撴灉鍐呭 */
+ /**
+ * 缁撴灉鍐呭
+ */
@Excel(name = " 缁撴灉鍐呭 ")
private String resultcontent;
- /** 鎴栦笖 */
+ /**
+ * 鎴栦笖
+ */
@Excel(name = " 鎴栦笖 ")
private Long orand;
- /** 鏄惁鏄剧ず寰楀垎 */
+ /**
+ * 鏄惁鏄剧ず寰楀垎
+ */
@Excel(name = " 鏄惁鏄剧ず寰楀垎 ")
- private Long isshowscore;
+ private String isshowscore;
- /** 鎺掑簭 */
+ /**
+ * 鎺掑簭
+ */
@Excel(name = " 鎺掑簭 ")
private Long sort;
- /** 鏈烘瀯ID */
+ /**
+ * 鏈烘瀯ID
+ */
@Excel(name = " 鏈烘瀯ID ")
private String orgid;
- /** 鍒犻櫎鏍囪 */
+ /**
+ * 鍒犻櫎鏍囪
+ */
private String delFlag;
- /** 涓婁紶鏍囪 */
+ /**
+ * 涓婁紶鏍囪
+ */
@Excel(name = " 涓婁紶鏍囪 ")
private Long isupload;
- /** 涓婁紶鏃堕棿 */
+ /**
+ * 涓婁紶鏃堕棿
+ */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = " 涓婁紶鏃堕棿 ", width = 30, dateFormat = "yyyy-MM-dd")
private Date uploadTime;
- public void setResultid(Long resultid)
- {
- this.resultid = resultid;
- }
-
- public Long getResultid()
- {
- return resultid;
- }
- public void setSvyid(Long svyid)
- {
- this.svyid = svyid;
- }
-
- public Long getSvyid()
- {
- return svyid;
- }
- public void setResultcontent(String resultcontent)
- {
- this.resultcontent = resultcontent;
- }
-
- public String getResultcontent()
- {
- return resultcontent;
- }
- public void setOrand(Long orand)
- {
- this.orand = orand;
- }
-
- public Long getOrand()
- {
- return orand;
- }
- public void setIsshowscore(Long isshowscore)
- {
- this.isshowscore = isshowscore;
- }
-
- public Long getIsshowscore()
- {
- return isshowscore;
- }
- public void setSort(Long sort)
- {
- this.sort = sort;
- }
-
- public Long getSort()
- {
- return sort;
- }
- public void setOrgid(String orgid)
- {
- this.orgid = orgid;
- }
-
- public String getOrgid()
- {
- return orgid;
- }
- 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("resultid", getResultid())
- .append("svyid", getSvyid())
- .append("resultcontent", getResultcontent())
- .append("orand", getOrand())
- .append("isshowscore", getIsshowscore())
- .append("sort", getSort())
- .append("orgid", getOrgid())
- .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