liusheng
2025-04-11 c6461ee45e27ad7f6f1a89d5aab103fbab6e79d3
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
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;
 
    @ApiModelProperty(value = "问题结果详情")
    private List<ServiceSubtaskDetail> serviceSubtaskDetailList;
}