liusheng
5 天以前 0c621621889c90a119e2ff9e41c4f5528f395f7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.smartor.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 医嘱知识提示
 *
 * @author ruoyi
 * @date 2024-02-02
 */
@ApiModel(value = "ServiceQueryFocus", description = "医嘱知识提示")
@Data
public class ServiceQueryFocus extends BaseEntity {
 
    @ApiModelProperty(value = "焦点数据的信息(失去焦点时不传")
    public String keywords;
 
    @ApiModelProperty(value = "字典的 code 值检查的字典代码 code,带有部位项目 code1^部位 code1,项目 code1^部位 code2,如 1^2,1^3")
    public String dictCode;
 
    @ApiModelProperty(value = "字典名检查项目名称,带有部位的使用项目名称 [部位 1,部位 2]")
    public String dictName;
 
    /**
     * 焦点数据类型:
     *  查看诊断知识:1
     *  查看药品知识:2
     *  查看检查知识:3
     *  查看检验知识:4
     *  查看症状知识:5
     *  查看手术知识:6
     *  填写诊断依据:7
     *  填写鉴别诊断:8
     *  查看检查报告:9
     *  查看检验报告:10
     *  查看治疗知识:11
     *  查看中草药:12
     */
    @ApiModelProperty(value = "焦点数据类型")
    public Integer submitType;
 
    @ApiModelProperty(value = "业务信息")
    public Integer focusType;
 
    @ApiModelProperty(value = "业务信息")
    public Integer scenesType;
 
}