任务细分增加节点类型。

This commit is contained in:
haown 2024-07-11 13:54:11 +08:00
parent 8df7cee16e
commit 2b379891e4
2 changed files with 18 additions and 0 deletions

View File

@ -104,6 +104,15 @@ public class TaskPartitionDict extends BaseEntity {
@Excel(name = "模板类型") @Excel(name = "模板类型")
private String templateType; private String templateType;
/**
* 节点类型
* PHONE_OUTBOUND电话外呼(默认自动人工或自动) QUESTIONNAIRE_SCALE问卷量表消息推送或人工随访
* PROPAGANDA_ARTICLE宣教文章 TEXT_REMIND文字提醒微信短信公众号
*/
@ApiModelProperty(value = "节点类型PHONE_OUTBOUND电话外呼(默认自动。人工或自动)QUESTIONNAIRE_SCALE问卷量表消息推送或人工随访\n"
+ "PROPAGANDA_ARTICLE宣教文章TEXT_REMIND文字提醒微信、短信、公众号")
private String taskNodeType;
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)

View File

@ -16,6 +16,7 @@
<result property="taskPartitionRemark" column="task_partition_remark"/> <result property="taskPartitionRemark" column="task_partition_remark"/>
<result property="taskPartitionContent" column="task_partition_content"/> <result property="taskPartitionContent" column="task_partition_content"/>
<result property="templateType" column="template_type"/> <result property="templateType" column="template_type"/>
<result property="taskNodeType" column="task_node_type"/>
<result property="createBy" column="create_by"/> <result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/> <result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/> <result property="updateBy" column="update_by"/>
@ -34,6 +35,7 @@
task_partition_remark, task_partition_remark,
task_partition_content, task_partition_content,
template_type, template_type,
task_node_type,
create_by, create_by,
create_time, create_time,
update_by, update_by,
@ -102,6 +104,8 @@
<if test="taskPartitionRemark != null">task_partition_remark, <if test="taskPartitionRemark != null">task_partition_remark,
</if> </if>
<if test="taskPartitionContent != null">task_partition_content, <if test="taskPartitionContent != null">task_partition_content,
</if>
<if test="taskNodeType != null">task_node_type,
</if> </if>
<if test="createBy != null">create_by, <if test="createBy != null">create_by,
</if> </if>
@ -132,6 +136,8 @@
<if test="taskPartitionRemark != null">#{taskPartitionRemark}, <if test="taskPartitionRemark != null">#{taskPartitionRemark},
</if> </if>
<if test="taskPartitionRemark != null">#{taskPartitionContent}, <if test="taskPartitionRemark != null">#{taskPartitionContent},
</if>
<if test="taskNodeType != null">#{taskNodeType},
</if> </if>
<if test="createBy != null">#{createBy}, <if test="createBy != null">#{createBy},
</if> </if>
@ -191,6 +197,9 @@
<if test="templateType != null">template_type = <if test="templateType != null">template_type =
#{templateType}, #{templateType},
</if> </if>
<if test="taskNodeType != null">task_node_type =
#{taskNodeType},
</if>
</trim> </trim>
where id = #{id} where id = #{id}
</update> </update>