任务细分增加节点类型。
This commit is contained in:
parent
8df7cee16e
commit
2b379891e4
@ -104,6 +104,15 @@ public class TaskPartitionDict extends BaseEntity {
|
||||
@Excel(name = "模板类型")
|
||||
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
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||
|
||||
@ -16,6 +16,7 @@
|
||||
<result property="taskPartitionRemark" column="task_partition_remark"/>
|
||||
<result property="taskPartitionContent" column="task_partition_content"/>
|
||||
<result property="templateType" column="template_type"/>
|
||||
<result property="taskNodeType" column="task_node_type"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
@ -34,6 +35,7 @@
|
||||
task_partition_remark,
|
||||
task_partition_content,
|
||||
template_type,
|
||||
task_node_type,
|
||||
create_by,
|
||||
create_time,
|
||||
update_by,
|
||||
@ -103,6 +105,8 @@
|
||||
</if>
|
||||
<if test="taskPartitionContent != null">task_partition_content,
|
||||
</if>
|
||||
<if test="taskNodeType != null">task_node_type,
|
||||
</if>
|
||||
<if test="createBy != null">create_by,
|
||||
</if>
|
||||
<if test="createTime != null">create_time,
|
||||
@ -133,6 +137,8 @@
|
||||
</if>
|
||||
<if test="taskPartitionRemark != null">#{taskPartitionContent},
|
||||
</if>
|
||||
<if test="taskNodeType != null">#{taskNodeType},
|
||||
</if>
|
||||
<if test="createBy != null">#{createBy},
|
||||
</if>
|
||||
<if test="createTime != null">#{createTime},
|
||||
@ -191,6 +197,9 @@
|
||||
<if test="templateType != null">template_type =
|
||||
#{templateType},
|
||||
</if>
|
||||
<if test="taskNodeType != null">task_node_type =
|
||||
#{taskNodeType},
|
||||
</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user