package com.smartor.domain; 
 | 
  
 | 
import io.swagger.annotations.ApiModel; 
 | 
import io.swagger.annotations.ApiModelProperty; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 电话问题回答明细 
 | 
 * 
 | 
 * @author ls 
 | 
 * @date 2023-06-05 
 | 
 */ 
 | 
@ApiModel(value = "ServiceSubTaskAnswerReq", description = "问题回答明细") 
 | 
@Data 
 | 
public class ServiceSubTaskAnswerReq { 
 | 
  
 | 
    @ApiModelProperty(value = "任务ID") 
 | 
    private String param1; 
 | 
  
 | 
    @ApiModelProperty(value = "患者ID") 
 | 
    private String param2; 
 | 
  
 | 
    @ApiModelProperty(value = "异常标识") 
 | 
    private String excep; 
 | 
  
 | 
    private String guid; 
 | 
  
 | 
    private String orgid; 
 | 
  
 | 
    @ApiModelProperty(value = "试卷类型:1 随访   2 问卷") 
 | 
    private Integer type; 
 | 
  
 | 
    /** 
 | 
     * 异常预警:0绿色;1红色;2黄色 
 | 
     */ 
 | 
    @ApiModelProperty(value = "异常预警:0绿色;1红色;2黄色") 
 | 
    private Integer isabnormal; 
 | 
  
 | 
    @ApiModelProperty(value = "问题结果详情") 
 | 
    private List<ServiceSubtaskDetail> serviceSubtaskDetailList; 
 | 
} 
 |