|
@@ -0,0 +1,24 @@
|
|
|
+package com.diagbot.vo;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description:
|
|
|
+ * @Author:zhaops
|
|
|
+ * @time: 2020/8/18 15:52
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+public class StaticKnowledgeAndClassicCaseVO {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 概念名称(冗余)
|
|
|
+ */
|
|
|
+ private String libName;
|
|
|
+
|
|
|
+ @ApiModelProperty("收藏状态:0-未收藏,1-已收藏")
|
|
|
+ private Integer collectionStatus;
|
|
|
+
|
|
|
+}
|