liusheng
2024-06-05 01bbc8f0563b33dd5ce6d59f76c3bae9931615dd
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 com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 语音任务对象 ivr_task
 *
 * @author smartor
 * @date 2023-03-24
 */
@ApiModel(value = "IvrTaskScriptQues", description = "任务对象")
@Data
public class IvrTaskScriptQues {
 
    /**
     * taskid
     */
    @ApiModelProperty(value = "taskid")
    private String param1;
 
    /**
     * patid
     */
    @Excel(name = "patid  ")
    @ApiModelProperty(value = "patid")
    private String param2;
 
}