liusheng
2025-02-22 ff6e84a8f969e2196041c500af051e3e33c46009
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
36
37
38
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;
 
 
}