liusheng
2024-09-04 9526971c403417c1c007804f24884c443b9e6cd7
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
package com.smartor.domain;
 
import com.ruoyi.common.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 语音任务对象 service_task
 *
 * @author smartor
 * @date 2023-03-24
 */
@ApiModel(value = "ServiceTaskScriptQues", description = "任务对象")
@Data
public class ServiceTaskScriptQues {
 
    /**
     * taskid
     */
    @ApiModelProperty(value = "taskid")
    private String param1;
 
    /**
     * patid
     */
    @Excel(name = "patid  ")
    @ApiModelProperty(value = "patid")
    private String param2;
 
}