package com.smartor.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
public class TestVo {
|
|
/**
|
* 任务ID
|
*/
|
@Excel(name = " 任务ID ")
|
@ApiModelProperty(value = "任务ID")
|
private Long taskid;
|
|
/**
|
* 模板ID
|
*/
|
@Excel(name = " 模板ID")
|
@ApiModelProperty(value = "模板ID")
|
private String templateid;
|
|
|
/**
|
* 发送类型: 1 时间段 2 时间点 3 即刻发送
|
*/
|
@ApiModelProperty(value = "发送类型: 1 时间段 2 即刻发送")
|
private String sendType;
|
|
private String type;
|
|
private Long stopState;
|
|
private Long servicefrom;
|
|
|
}
|