From 9b540b646aa7171d3d3ba707457b86445dc71dc7 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Mon, 09 Sep 2024 20:04:23 +0800 Subject: [PATCH] 1、事件流转相关接口优化 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowableNodeMapper.xml | 26 +------------------------- 1 files changed, 1 insertions(+), 25 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowableNodeMapper.xml b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowableNodeMapper.xml index b0c3436..ada8645 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowableNodeMapper.xml +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/flow/dao/mapper/xml/FlowableNodeMapper.xml @@ -5,7 +5,7 @@ * @description: 自定义sql,请自行实现业务逻辑 * @company: hugeinfo * @author: liyj - * @time:2024-09-06 15:50:06 + * @time:2024-09-08 15:09:07 * @version 1.0.0 --> <mapper namespace="cn.huge.module.flow.dao.mapper.FlowableNodeMapper"> @@ -15,10 +15,6 @@ <result property="name" column="name"/> <result property="des" column="des"/> <result property="icon" column="icon"/> - <result property="apiType" column="api_type"/> - <result property="api" column="api"/> - <result property="caseProcess" column="case_process"/> - <result property="caseProcessName" column="case_process_name"/> <result property="deleteStatus" column="delete_status"/> <result property="custId" column="cust_id"/> <result property="createTime" column="create_time"/> @@ -32,10 +28,6 @@ name, des, icon, - api_type, - api, - case_process, - case_process_name, delete_status, cust_id, create_time, @@ -46,10 +38,6 @@ <if test="entity.name != null">name = #{entity.name},</if> <if test="entity.des != null">des = #{entity.des},</if> <if test="entity.icon != null">icon = #{entity.icon},</if> - <if test="entity.apiType != null">api_type = #{entity.apiType},</if> - <if test="entity.api != null">api = #{entity.api},</if> - <if test="entity.caseProcess != null">case_process = #{entity.caseProcess},</if> - <if test="entity.caseProcessName != null">case_process_name = #{entity.caseProcessName},</if> <if test="entity.deleteStatus != null">delete_status = #{entity.deleteStatus},</if> <if test="entity.custId != null">cust_id = #{entity.custId},</if> <if test="entity.createTime != null">create_time = #{entity.createTime},</if> @@ -70,18 +58,6 @@ </if> <if test="terms.icon != null and terms.icon !=''"> and icon = #{terms.icon} - </if> - <if test="terms.apiType != null and terms.apiType !=''"> - and api_type = #{terms.apiType} - </if> - <if test="terms.api != null and terms.api !=''"> - and api = #{terms.api} - </if> - <if test="terms.caseProcess != null and terms.caseProcess !=''"> - and case_process = #{terms.caseProcess} - </if> - <if test="terms.caseProcessName != null and terms.caseProcessName !=''"> - and case_process_name = #{terms.caseProcessName} </if> <if test="terms.deleteStatus = null and terms.deleteStatus =''"> and delete_status = 0 -- Gitblit v1.8.0