liusheng
2024-06-12 6d51501ca93f5bf46759f851988650477cf32e6c
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
package com.smartor.domain;
 
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;
 
/**
 * 发送类型入参
 */
@ApiModel(value = "SendTaskVO", description = "发送任务入参")
@Data
public class SendTaskVO extends BaseEntity {
 
    @ApiModelProperty(value = "任务ID")
    private Long taskId;
 
    @ApiModelProperty(value = "发送类型: 1 时间段   2 即刻发送 3 时间点")
    private String sendType;
 
    /**
     * 发送状态:  0  失败   1成功
     */
    @Excel(name = " 发送状态: 1创建   2执行中   3 暂停   4终止  5完成 ")
    @ApiModelProperty(value = "发送状态: 1创建   2执行中   3 暂停   4终止  5完成 ")
    private Integer sendState;
 
 
}