Merge branch '0418_小程序开发' of http://182.92.166.109:3000/zhuangyuanke/PostDischargePatientManage into 0418_小程序开发
This commit is contained in:
commit
e0509d1698
@ -109,10 +109,14 @@ public class TaskPartitionDict extends BaseEntity {
|
|||||||
* PHONE_OUTBOUND:电话外呼(默认自动。人工或自动); QUESTIONNAIRE_SCALE:问卷量表(消息推送或人工随访);
|
* PHONE_OUTBOUND:电话外呼(默认自动。人工或自动); QUESTIONNAIRE_SCALE:问卷量表(消息推送或人工随访);
|
||||||
* PROPAGANDA_ARTICLE:宣教文章; TEXT_REMIND:文字提醒(微信、短信、公众号)
|
* PROPAGANDA_ARTICLE:宣教文章; TEXT_REMIND:文字提醒(微信、短信、公众号)
|
||||||
*/
|
*/
|
||||||
@ApiModelProperty(value = "节点类型,PHONE_OUTBOUND:电话外呼(默认自动。人工或自动);QUESTIONNAIRE_SCALE:问卷量表(消息推送或人工随访);\n"
|
@ApiModelProperty(value = "节点类型,PHONE_OUTBOUND:电话外呼(默认自动。人工或自动);QUESTIONNAIRE_SCALE:问卷量表(消息推送或人工随访);PROPAGANDA_ARTICLE:宣教文章;TEXT_REMIND:文字提醒(微信、短信、公众号)")
|
||||||
+ "PROPAGANDA_ARTICLE:宣教文章;TEXT_REMIND:文字提醒(微信、短信、公众号)")
|
|
||||||
private String taskNodeType;
|
private String taskNodeType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 应用范围;PRIVATE:专用;PUBLIC:公共
|
||||||
|
*/
|
||||||
|
private String applyRange;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
|||||||
@ -17,6 +17,7 @@
|
|||||||
<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="taskNodeType" column="task_node_type"/>
|
||||||
|
<result property="applyRange" column="apply_range"/>
|
||||||
<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"/>
|
||||||
@ -36,6 +37,7 @@
|
|||||||
task_partition_content,
|
task_partition_content,
|
||||||
template_type,
|
template_type,
|
||||||
task_node_type,
|
task_node_type,
|
||||||
|
apply_range,
|
||||||
create_by,
|
create_by,
|
||||||
create_time,
|
create_time,
|
||||||
update_by,
|
update_by,
|
||||||
@ -73,6 +75,9 @@
|
|||||||
<if test="templateType != null and templateType != ''">
|
<if test="templateType != null and templateType != ''">
|
||||||
and template_type = #{templateType}
|
and template_type = #{templateType}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="applyRange != null and applyRange != ''">
|
||||||
|
and apply_range = #{applyRange}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by task_partition_sort
|
order by task_partition_sort
|
||||||
</select>
|
</select>
|
||||||
@ -117,6 +122,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="templateType != null">template_type,
|
<if test="templateType != null">template_type,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="applyRange != null">apply_range,
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
<if test="taskTypeId != null">#{taskTypeId},
|
<if test="taskTypeId != null">#{taskTypeId},
|
||||||
@ -149,6 +156,8 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="templateType != null">#{templateType},
|
<if test="templateType != null">#{templateType},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="applyRange != null">#{applyRange},
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|
||||||
@ -200,6 +209,9 @@
|
|||||||
<if test="taskNodeType != null">task_node_type =
|
<if test="taskNodeType != null">task_node_type =
|
||||||
#{taskNodeType},
|
#{taskNodeType},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="applyRange != null">apply_range =
|
||||||
|
#{applyRange},
|
||||||
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</update>
|
</update>
|
||||||
@ -228,6 +240,7 @@
|
|||||||
tpd.second_classify_describe,
|
tpd.second_classify_describe,
|
||||||
tpd.execution_time,
|
tpd.execution_time,
|
||||||
tpd.task_partition_sort,
|
tpd.task_partition_sort,
|
||||||
|
tpd.apply_range,
|
||||||
(SELECT count(1) from label_field_info where task_partition_dict_id = tpd.id) taskPartitionRemark
|
(SELECT count(1) from label_field_info where task_partition_dict_id = tpd.id) taskPartitionRemark
|
||||||
from task_partition_dict tpd
|
from task_partition_dict tpd
|
||||||
<where>
|
<where>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user