From bb60b5747d5f4b85655a541d4990ec7464497b1b Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期五, 10 五月 2024 18:18:02 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/java/com/smartor/domain/SvyLibTitle.java | 71 ++++++++++++++++++++++++++++++++--- 1 files changed, 65 insertions(+), 6 deletions(-) diff --git a/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java b/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java index aa7f05d..d2170c9 100644 --- a/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java +++ b/smartor/src/main/java/com/smartor/domain/SvyLibTitle.java @@ -1,6 +1,7 @@ package com.smartor.domain; import java.math.BigDecimal; +import java.util.ArrayList; import java.util.Date; import java.util.List; @@ -20,9 +21,8 @@ * @date 2023-03-02 */ @Data -@ApiModel(value = "MinioResponseDTO", description = "鏍囩鍒嗙被瀵硅薄") +@ApiModel(value = "SvyLibTitle", description = "闂嵎瀵硅薄") public class SvyLibTitle extends BaseEntity { - private static final long serialVersionUID = 1L; /** * 鑷ID @@ -33,7 +33,7 @@ /** * 闂嵎鍒嗙被ID */ - @ApiModelProperty(value = "闂嵎鍒嗙被ID") + @ApiModelProperty(value = "闂嵎鍒嗙被ID", required = true) @Excel(name = " 闂嵎鍒嗙被ID ") private Long categoryid; @@ -47,14 +47,14 @@ /** * 闂嵎鍚嶇О */ - @ApiModelProperty(value = "闂嵎鍚嶇О") + @ApiModelProperty(value = "闂嵎鍚嶇О", required = true) @Excel(name = " 闂嵎鍚嶇О ") private String svyname; /** * 鎻忚堪 */ - @ApiModelProperty(value = "鎻忚堪") + @ApiModelProperty(value = "鎻忚堪", required = true) @Excel(name = " 鎻忚堪 ") private String description; @@ -112,7 +112,7 @@ */ @ApiModelProperty(value = "鏄惁鍚敤") @Excel(name = " 鏄惁鍚敤 ") - private Long isenable; + private String isenable = "0"; /** * 鏈烘瀯ID @@ -161,7 +161,66 @@ @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 = ""; + + /** + * 鍊肩被鍨嬶紙1 閫夐」 2 鏂囨湰 3 鏁板�硷級 + */ + @ApiModelProperty(value = "鍊肩被鍨嬶紙1 閫夐」 2 鏂囨湰 3 鏁板�硷級") + @Excel(name = "鍊肩被鍨�", readConverterExp = "1=閫夐」,2=鏂囨湰,3=鏁板��") + private Long valueType; + + + @ApiModelProperty(value = "鍥炲锛堟寚闂鐨勫洖澶嶏紝缁欓棶绛旈鐢ㄧ殑锛�") + private String reply; + + + public SvyLibTitle() { + } public SvyLibTitle(Long svyid, String icdname) { this.svyid = svyid; -- Gitblit v1.9.3