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; 
 | 
  
 | 
} 
 |