liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
smartor/src/main/java/com/smartor/domain/SvyTask.java
@@ -38,7 +38,14 @@
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务名称")
    private String taskname;
    private String taskName;
    /**
     *
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务描述")
    private String taskDesc;
    /**
     * 模板ID
@@ -236,13 +243,13 @@
     */
    @Excel(name = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送  ")
    @ApiModelProperty(value = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送")
    private Long isSend;
    private Long sendType;
    /**
     * 发送状态:  0  失败   1成功
     * 发送状态: 1新建 2执行中 3暂停 4终止 5完成
     */
    @Excel(name = "发送状态:  0  失败   1成功")
    @ApiModelProperty(value = "发送状态:  0  失败   1成功")
    @Excel(name = "发送状态: 1新建 2执行中 3暂停 4终止 5完成")
    @ApiModelProperty(value = "发送状态: 1新建 2执行中 3暂停 4终止 5完成")
    private String sendState;
    /**
@@ -252,5 +259,61 @@
    @ApiModelProperty(value = "文本变量参数")
    private String param;
    /**
     * 文本变量参数
     */
    @Excel(name = "文本变量参数")
    @ApiModelProperty(value = "文本变量参数")
    private String textParam;
    /**
     * 暂停状态 : 状态如果发生修改,值就加1
     */
    @Excel(name = "暂停状态 : 状态如果发生修改,值就加1")
    @ApiModelProperty(value = "暂停状态 : 状态如果发生修改,值就加1")
    private Long stopState = 0L;
    @ApiModelProperty(value = "上午时间")
    private String showTimeMorn;
    @ApiModelProperty(value = "中午时间")
    private String showTimeNoon;
    @ApiModelProperty(value = "晚午时间")
    private String showTimeNight;
    @ApiModelProperty(value = "展示日期")
    private String showDate;
    /**
     * 类型名称
     */
    @Excel(name = "发送时间段")
    @ApiModelProperty(value = "发送时间段")
    private String sendTimeSlot;
    /**
     * 模板库模版名称
     */
    @Excel(name = "模板库模版名称")
    private String libtemplatename;
    /**
     * 模板库模版ID
     */
    @Excel(name = "模板库模版ID")
    private String libtemplateid;
    /**
     * pageNum
     */
    @ApiModelProperty("pageNum")
    private Integer pageNum;
    /**
     * pageSize
     */
    @ApiModelProperty("pageSize")
    private Integer pageSize;
}