|
@@ -1,5 +1,6 @@
|
|
|
package com.diagbot.dto;
|
|
|
|
|
|
+import com.diagbot.annotation.CryptField;
|
|
|
import lombok.Getter;
|
|
|
import lombok.Setter;
|
|
|
|
|
@@ -12,12 +13,14 @@ import lombok.Setter;
|
|
|
@Setter
|
|
|
public class RetrievalDTO {
|
|
|
//标签名称
|
|
|
+ @CryptField
|
|
|
private String name;
|
|
|
//标签id
|
|
|
private Long questionId;
|
|
|
//显示类型(静态知识出参时:0.同义词 1.本体 11.子项推出父项 21.(父项--子项)公表名)
|
|
|
private Long showType;
|
|
|
//Tag名称
|
|
|
+ @CryptField
|
|
|
private String retrievalName;
|
|
|
//概念id
|
|
|
private Long conceptId;
|
|
@@ -28,6 +31,7 @@ public class RetrievalDTO {
|
|
|
//icss标签type
|
|
|
private Integer type;
|
|
|
//公表名称
|
|
|
+ @CryptField
|
|
|
private String uniqueName;
|
|
|
//公表ID
|
|
|
private Long uniqueId;
|