liusheng
2024-09-18 907641e56c2085aaa81f267946dc3e3e9fca73e7
smartor/src/main/java/com/smartor/domain/SvyTaskVO.java
@@ -38,7 +38,13 @@
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务名称")
    private String taskname;
    private String taskName;
    /**
     *
     */
    @Excel(name = "  ")
    @ApiModelProperty(value = "任务描述")
    private String taskDesc;
    /**
     * 模板ID
@@ -277,7 +283,7 @@
     */
    @Excel(name = "文本变量参数")
    @ApiModelProperty(value = "文本变量参数")
    private String textParam;
    private Map<String, Map<String, String>> textParam;
    /**
     * 暂停状态 : 状态如果发生修改,值就加1
@@ -315,4 +321,26 @@
     */
    @Excel(name = "模板库模版ID")
    private String libtemplateid;
    /**
     * 已发送
     */
    @Excel(name = " 已发送 ")
    private Long yfs;
    /**
     * 未发送
     */
    @Excel(name = " 未发送 ")
    private Long wfs;
    /**
     * 是否发送 : 0 暂停发送  1 定时发送  2 立即发送
     */
    @Excel(name = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送  ")
    @ApiModelProperty(value = "是否发送 : 0 暂停发送  1 定时发送  2 立即发送")
    private Long sendType;
}