|
@@ -1,5 +1,6 @@
|
|
package com.diagbot.dto;
|
|
package com.diagbot.dto;
|
|
|
|
|
|
|
|
+import com.diagbot.annotation.CryptField;
|
|
import lombok.Getter;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
import lombok.Setter;
|
|
|
|
|
|
@@ -12,14 +13,18 @@ import lombok.Setter;
|
|
@Setter
|
|
@Setter
|
|
public class ConceptRetrievalDTO {
|
|
public class ConceptRetrievalDTO {
|
|
private Long selfId;//本身概念id
|
|
private Long selfId;//本身概念id
|
|
|
|
+ @CryptField
|
|
private String selfName;//本身名称
|
|
private String selfName;//本身名称
|
|
private Long parentId;//父级id
|
|
private Long parentId;//父级id
|
|
|
|
+ @CryptField
|
|
private String parentName;//父级名称
|
|
private String parentName;//父级名称
|
|
|
|
+ @CryptField
|
|
private String sameName;//同义词名称
|
|
private String sameName;//同义词名称
|
|
private Long showType;//显示类型(1本体,0同义词)
|
|
private Long showType;//显示类型(1本体,0同义词)
|
|
private Long libTypeId;//标签类型id
|
|
private Long libTypeId;//标签类型id
|
|
private String libTypeName;//标签类型名称
|
|
private String libTypeName;//标签类型名称
|
|
private Integer type;//questionType
|
|
private Integer type;//questionType
|
|
private Long uniqueId;//公表id
|
|
private Long uniqueId;//公表id
|
|
|
|
+ @CryptField
|
|
private String uniqueName;//公表名称
|
|
private String uniqueName;//公表名称
|
|
}
|
|
}
|