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