From fa8dce53106f77c22d52d2c1da251ea2c41ab9b8 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期三, 06 三月 2024 11:56:26 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/java/com/smartor/domain/SvyLibTitle.java | 350 +++++++++++++++++++++++++---------------------------------
1 files changed, 150 insertions(+), 200 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java b/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java
index e7de39c..ba49ad5 100644
--- a/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java
+++ b/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java
@@ -1,8 +1,14 @@
package com.smartor.domain;
import java.math.BigDecimal;
+import java.util.ArrayList;
import java.util.Date;
+import java.util.List;
+
import com.fasterxml.jackson.annotation.JsonFormat;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
@@ -10,259 +16,203 @@
/**
* 闂嵎瀵硅薄 svy_lib_title
- *
+ *
* @author ruoyi
* @date 2023-03-02
*/
-public class SvyLibTitle extends BaseEntity
-{
- private static final long serialVersionUID = 1L;
+@Data
+@ApiModel(value = "SvyLibTitle", description = "闂嵎瀵硅薄")
+public class SvyLibTitle extends BaseEntity {
- /** 鑷ID */
+ /**
+ * 鑷ID
+ */
+ @ApiModelProperty(value = "鑷ID")
private Long svyid;
- /** 闂嵎鍒嗙被ID */
+ /**
+ * 闂嵎鍒嗙被ID
+ */
+ @ApiModelProperty(value = "闂嵎鍒嗙被ID", required = true)
@Excel(name = " 闂嵎鍒嗙被ID ")
private Long categoryid;
- /** 闂嵎浠g爜 */
+ /**
+ * 闂嵎浠g爜
+ */
+ @ApiModelProperty(value = "闂嵎浠g爜")
@Excel(name = " 闂嵎浠g爜 ")
private String svycode;
- /** 闂嵎鍚嶇О */
+ /**
+ * 闂嵎鍚嶇О
+ */
+ @ApiModelProperty(value = "闂嵎鍚嶇О", required = true)
@Excel(name = " 闂嵎鍚嶇О ")
private String svyname;
- /** 鎻忚堪 */
+ /**
+ * 鎻忚堪
+ */
+ @ApiModelProperty(value = "鎻忚堪", required = true)
@Excel(name = " 鎻忚堪 ")
private String description;
- /** 闂嵎浠嬬粛 */
+ /**
+ * 闂嵎浠嬬粛
+ */
+ @ApiModelProperty(value = "闂嵎浠嬬粛")
@Excel(name = " 闂嵎浠嬬粛 ")
private String introduce;
- /** 闂嵎鎻愮ず */
+ /**
+ * 闂嵎鎻愮ず
+ */
+ @ApiModelProperty(value = "闂嵎鎻愮ず")
@Excel(name = " 闂嵎鎻愮ず ")
private String submitprompt;
- /** 妯℃澘ID */
+ /**
+ * 妯℃澘ID
+ */
+ @ApiModelProperty(value = "妯℃澘ID")
@Excel(name = " 妯℃澘ID ")
private Long templateid;
- /** 鐗堟湰 */
+ /**
+ * 鐗堟湰
+ */
+ @ApiModelProperty(value = "鐗堟湰")
@Excel(name = " 鐗堟湰 ")
private BigDecimal version;
- /** 涓績搴撲唬鐮� */
+ /**
+ * 涓績搴撲唬鐮�
+ */
+ @ApiModelProperty(value = "涓績搴撲唬鐮�")
@Excel(name = " 涓績搴撲唬鐮� ")
private String centerlibrarycode;
- /** 涓績搴揑D */
+ /**
+ * 涓績搴揑D
+ */
+ @ApiModelProperty(value = "涓績搴揑D")
@Excel(name = " 涓績搴揑D ")
private Long centerlibraryid;
- /** 鏄惁鏈湴 */
+ /**
+ * 鏄惁鏈湴
+ */
+ @ApiModelProperty(value = "鏄惁鏈湴")
@Excel(name = " 鏄惁鏈湴 ")
private Long islocal;
- /** 鏄惁鍚敤 */
+ /**
+ * 鏄惁鍚敤
+ */
+ @ApiModelProperty(value = "鏄惁鍚敤")
@Excel(name = " 鏄惁鍚敤 ")
- private Long isenable;
+ private String isenable = "0";
- /** 鏈烘瀯ID */
+ /**
+ * 鏈烘瀯ID
+ */
+ @ApiModelProperty(value = "鏈烘瀯ID")
@Excel(name = " 鏈烘瀯ID ")
private String orgid;
- /** 鍒犻櫎鏍囪 */
+ /**
+ * 鍒犻櫎鏍囪
+ */
+ @ApiModelProperty(value = "鍒犻櫎鏍囪")
private String delFlag;
- /** 涓婁紶鏍囪 */
+ /**
+ * 涓婁紶鏍囪
+ */
+ @ApiModelProperty(value = "涓婁紶鏍囪")
@Excel(name = " 涓婁紶鏍囪 ")
private Long isupload;
- /** 涓婁紶鏃堕棿 */
+
+ /**
+ * 涓婁紶鏃堕棿
+ */
+ @ApiModelProperty(value = "涓婁紶鏃堕棿")
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = " 涓婁紶鏃堕棿 ", width = 30, dateFormat = "yyyy-MM-dd")
private Date uploadTime;
- public void setSvyid(Long svyid)
- {
+ /**
+ * 鐤剧梾鍚嶇О
+ */
+ @ApiModelProperty(value = "鐤剧梾鍚嶇О")
+ private String icdname;
+
+ /**
+ * 鐤剧梾ID
+ */
+ @ApiModelProperty(value = "鐤剧梾ID")
+ private List<String> icdID;
+
+ /**
+ * 闂嵎棰樼洰闆嗗悎
+ */
+ @ApiModelProperty(value = "闂嵎棰樼洰闆嗗悎")
+ private List<SvyLibTopic> svyLibTopics;
+
+ /**
+ * 妯℃澘绉戝鍏宠仈闆嗗悎
+ */
+ @ApiModelProperty(value = "妯℃澘绉戝鍏宠仈闆嗗悎")
+ private List<TempDetpRelevance> tempDetpRelevances = new ArrayList<>();
+
+ /**
+ * 鏄惁瀛樺湪鎿嶄綔锛�1 鏂板 2淇敼 3鍒犻櫎
+ */
+ @ApiModelProperty(value = "鏄惁瀛樺湪鎿嶄綔锛�1 鏂板 2淇敼 3鍒犻櫎")
+ private Integer isoperation;
+ /**
+ * 绉戝鍚嶇О
+ */
+ @Excel(name = "绉戝鍚嶇О")
+ @ApiModelProperty("绉戝鍚嶇О")
+ private String deptNames = "";
+
+ /**
+ * 鏍囩淇℃伅
+ */
+ @Excel(name = "鏍囩淇℃伅")
+ @ApiModelProperty("鏍囩淇℃伅")
+ private String labelInfo = "";
+
+ /**
+ * 闄㈠尯
+ */
+ @Excel(name = "闄㈠尯")
+ @ApiModelProperty("闄㈠尯")
+ private String campus = "";
+
+ /**
+ * 閫傜敤鏂瑰紡锛氳皟鏌ヨ〃1锛屾櫤鑳借闊�2銆佷汉宸�3
+ */
+ @Excel(name = "闄㈤�傜敤鏂瑰紡锛氳皟鏌ヨ〃1锛屾櫤鑳借闊�2銆佷汉宸�3鍖�")
+ @ApiModelProperty("閫傜敤鏂瑰紡锛氳皟鏌ヨ〃1锛屾櫤鑳借闊�2銆佷汉宸�3")
+ private String suitway = "";
+
+
+ /**
+ * 鍏跺畠鏁版嵁锛堝瓨鍌ㄥ彉閲忥級
+ */
+ @ApiModelProperty("鍏跺畠鏁版嵁锛堝瓨鍌ㄥ彉閲忥級")
+ private String otherdata = "";
+
+
+ public SvyLibTitle() {
+ }
+
+ public SvyLibTitle(Long svyid, String icdname) {
this.svyid = svyid;
- }
-
- public Long getSvyid()
- {
- return svyid;
- }
- public void setCategoryid(Long categoryid)
- {
- this.categoryid = categoryid;
- }
-
- public Long getCategoryid()
- {
- return categoryid;
- }
- public void setSvycode(String svycode)
- {
- this.svycode = svycode;
- }
-
- public String getSvycode()
- {
- return svycode;
- }
- public void setSvyname(String svyname)
- {
- this.svyname = svyname;
- }
-
- public String getSvyname()
- {
- return svyname;
- }
- public void setDescription(String description)
- {
- this.description = description;
- }
-
- public String getDescription()
- {
- return description;
- }
- public void setIntroduce(String introduce)
- {
- this.introduce = introduce;
- }
-
- public String getIntroduce()
- {
- return introduce;
- }
- public void setSubmitprompt(String submitprompt)
- {
- this.submitprompt = submitprompt;
- }
-
- public String getSubmitprompt()
- {
- return submitprompt;
- }
- public void setTemplateid(Long templateid)
- {
- this.templateid = templateid;
- }
-
- public Long getTemplateid()
- {
- return templateid;
- }
- public void setVersion(BigDecimal version)
- {
- this.version = version;
- }
-
- public BigDecimal getVersion()
- {
- return version;
- }
- public void setCenterlibrarycode(String centerlibrarycode)
- {
- this.centerlibrarycode = centerlibrarycode;
- }
-
- public String getCenterlibrarycode()
- {
- return centerlibrarycode;
- }
- public void setCenterlibraryid(Long centerlibraryid)
- {
- this.centerlibraryid = centerlibraryid;
- }
-
- public Long getCenterlibraryid()
- {
- return centerlibraryid;
- }
- public void setIslocal(Long islocal)
- {
- this.islocal = islocal;
- }
-
- public Long getIslocal()
- {
- return islocal;
- }
- public void setIsenable(Long isenable)
- {
- this.isenable = isenable;
- }
-
- public Long getIsenable()
- {
- return isenable;
- }
- 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("svyid", getSvyid())
- .append("categoryid", getCategoryid())
- .append("svycode", getSvycode())
- .append("svyname", getSvyname())
- .append("description", getDescription())
- .append("introduce", getIntroduce())
- .append("submitprompt", getSubmitprompt())
- .append("templateid", getTemplateid())
- .append("version", getVersion())
- .append("centerlibrarycode", getCenterlibrarycode())
- .append("centerlibraryid", getCenterlibraryid())
- .append("islocal", getIslocal())
- .append("isenable", getIsenable())
- .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();
+ this.icdname = icdname;
}
}
--
Gitblit v1.9.3