新加字段
This commit is contained in:
parent
92e21842c0
commit
6ac60b54c2
@ -238,6 +238,13 @@ public class SpecialDiseaseNode extends BaseEntity {
|
|||||||
@Excel(name = "AL电话推送标识,0:未开启,1:已开启")
|
@Excel(name = "AL电话推送标识,0:未开启,1:已开启")
|
||||||
private Integer phonePushSign;
|
private Integer phonePushSign;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* AI:自动 或 COMMON:手动
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "AI:自动 或 COMMON:手动")
|
||||||
|
@Excel(name = "AI:自动 或 COMMON:手动")
|
||||||
|
private String phoneDialMethod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* AI电话模板表id
|
* AI电话模板表id
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -55,6 +55,7 @@
|
|||||||
<result property="appletPromptDescription" column="applet_prompt_description"/>
|
<result property="appletPromptDescription" column="applet_prompt_description"/>
|
||||||
<result property="appletNodeContent" column="applet_node_content"/>
|
<result property="appletNodeContent" column="applet_node_content"/>
|
||||||
<result property="phonePushSign" column="phone_push_sign"/>
|
<result property="phonePushSign" column="phone_push_sign"/>
|
||||||
|
<result property="phoneDialMethod" column="phone_dial_method"/>
|
||||||
<result property="phoneTemplateId" column="phone_template_id"/>
|
<result property="phoneTemplateId" column="phone_template_id"/>
|
||||||
<result property="phoneTemplateName" column="phone_template_name"/>
|
<result property="phoneTemplateName" column="phone_template_name"/>
|
||||||
<result property="phoneMessageRemind" column="phone_message_remind"/>
|
<result property="phoneMessageRemind" column="phone_message_remind"/>
|
||||||
@ -106,6 +107,7 @@
|
|||||||
<result property="appletPromptDescription" column="applet_prompt_description"/>
|
<result property="appletPromptDescription" column="applet_prompt_description"/>
|
||||||
<result property="appletNodeContent" column="applet_node_content"/>
|
<result property="appletNodeContent" column="applet_node_content"/>
|
||||||
<result property="phonePushSign" column="phone_push_sign"/>
|
<result property="phonePushSign" column="phone_push_sign"/>
|
||||||
|
<result property="phoneDialMethod" column="phone_dial_method"/>
|
||||||
<result property="phoneTemplateId" column="phone_template_id"/>
|
<result property="phoneTemplateId" column="phone_template_id"/>
|
||||||
<result property="phoneTemplateName" column="phone_template_name"/>
|
<result property="phoneTemplateName" column="phone_template_name"/>
|
||||||
<result property="phoneMessageRemind" column="phone_message_remind"/>
|
<result property="phoneMessageRemind" column="phone_message_remind"/>
|
||||||
@ -156,6 +158,7 @@
|
|||||||
applet_prompt_description,
|
applet_prompt_description,
|
||||||
applet_node_content,
|
applet_node_content,
|
||||||
phone_push_sign,
|
phone_push_sign,
|
||||||
|
phone_dial_method,
|
||||||
phone_template_id,
|
phone_template_id,
|
||||||
phone_template_name,
|
phone_template_name,
|
||||||
phone_message_remind,
|
phone_message_remind,
|
||||||
@ -219,6 +222,9 @@
|
|||||||
<if test="messagePushSign != null ">
|
<if test="messagePushSign != null ">
|
||||||
and message_push_sign = #{messagePushSign}
|
and message_push_sign = #{messagePushSign}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="phoneDialMethod != null ">
|
||||||
|
and phone_dial_method = #{phoneDialMethod}
|
||||||
|
</if>
|
||||||
<if test="messageTemplateId != null ">
|
<if test="messageTemplateId != null ">
|
||||||
and message_template__id = #{messageTemplateId}
|
and message_template__id = #{messageTemplateId}
|
||||||
</if>
|
</if>
|
||||||
@ -410,6 +416,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="nodeContent != null">node_content,
|
<if test="nodeContent != null">node_content,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="phoneDialMethod != null">phone_dial_method,
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="routeId != null">#{routeId},
|
<if test="routeId != null">#{routeId},
|
||||||
@ -506,6 +514,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="nodeContent != null">#{nodeContent},
|
<if test="nodeContent != null">#{nodeContent},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="phoneDialMethod != null ">#{phoneDialMethod}
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
@ -653,6 +663,9 @@
|
|||||||
<if test="nodeContent != null">node_content =
|
<if test="nodeContent != null">node_content =
|
||||||
#{nodeContent},
|
#{nodeContent},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="phoneDialMethod != null ">phone_dial_method =
|
||||||
|
#{phoneDialMethod},
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</update>
|
</update>
|
||||||
@ -717,7 +730,8 @@
|
|||||||
route_check_remark,
|
route_check_remark,
|
||||||
node_content,
|
node_content,
|
||||||
create_by,
|
create_by,
|
||||||
create_time
|
create_time,
|
||||||
|
phone_dial_method
|
||||||
) values
|
) values
|
||||||
<foreach item="specialDiseaseNodeList" index="index" collection="list" separator=",">
|
<foreach item="specialDiseaseNodeList" index="index" collection="list" separator=",">
|
||||||
(
|
(
|
||||||
@ -767,6 +781,7 @@
|
|||||||
#{specialDiseaseNodeList.nodeContent},
|
#{specialDiseaseNodeList.nodeContent},
|
||||||
#{specialDiseaseNodeList.createBy},
|
#{specialDiseaseNodeList.createBy},
|
||||||
#{specialDiseaseNodeList.createTime}
|
#{specialDiseaseNodeList.createTime}
|
||||||
|
#{specialDiseaseNodeList.phoneDialMethod}
|
||||||
)
|
)
|
||||||
</foreach>
|
</foreach>
|
||||||
</insert>
|
</insert>
|
||||||
@ -837,6 +852,7 @@
|
|||||||
sdn.route_check_date,
|
sdn.route_check_date,
|
||||||
sdn.route_check_remark,
|
sdn.route_check_remark,
|
||||||
sdn.node_content,
|
sdn.node_content,
|
||||||
|
sdn.phone_dial_method,
|
||||||
(select COUNT(1)
|
(select COUNT(1)
|
||||||
from special_disease_node
|
from special_disease_node
|
||||||
where route_id = specialDiseaseRouteId) totalNumber,
|
where route_id = specialDiseaseRouteId) totalNumber,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user