| | |
| | | * @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"> |
| | |
| | | <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"/> |
| | |
| | | name, |
| | | des, |
| | | icon, |
| | | api_type, |
| | | api, |
| | | case_process, |
| | | case_process_name, |
| | | delete_status, |
| | | cust_id, |
| | | create_time, |
| | |
| | | <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> |
| | |
| | | </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 |