| | |
| | | * @description: 自定义sql,请自行实现业务逻辑 |
| | | * @company: hugeinfo |
| | | * @author: liyj |
| | | * @time:2024-09-06 15:50:06 |
| | | * @time:2024-09-08 15:09:08 |
| | | * @version 1.0.0 |
| | | --> |
| | | <mapper namespace="cn.huge.module.flow.dao.mapper.FlowNodeMapper"> |
| | |
| | | <result property="nodeIcon" column="node_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="expire" column="expire"/> |
| | | <result property="candeType" column="cande_type"/> |
| | | <result property="candeUnitId" column="cande_unit_id"/> |
| | |
| | | node_icon, |
| | | api_type, |
| | | api, |
| | | case_process, |
| | | case_process_name, |
| | | expire, |
| | | cande_type, |
| | | cande_unit_id, |
| | |
| | | <if test="entity.nodeIcon != null">node_icon = #{entity.nodeIcon},</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.expire != null">expire = #{entity.expire},</if> |
| | | <if test="entity.candeType != null">cande_type = #{entity.candeType},</if> |
| | | <if test="entity.candeUnitId != null">cande_unit_id = #{entity.candeUnitId},</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.expire != null and terms.expire !=''"> |
| | | and expire = #{terms.expire} |
| | | </if> |