| | |
| | | * @description: 自定义sql,请自行实现业务逻辑 |
| | | * @company: hugeinfo |
| | | * @author: liyj |
| | | * @time:2024-09-08 18:27:35 |
| | | * @time:2024-09-09 22:10:33 |
| | | * @version 1.0.0 |
| | | --> |
| | | <mapper namespace="cn.huge.module.cases.dao.mapper.CaseTaskMapper"> |
| | |
| | | <result property="handleUserName" column="handle_user_name"/> |
| | | <result property="handleResult" column="handle_result"/> |
| | | <result property="handleContent" column="handle_content"/> |
| | | <result property="handleIllust" column="handle_illust"/> |
| | | <result property="handleTime" column="handle_time"/> |
| | | <result property="deleteStatus" column="delete_status"/> |
| | | <result property="custId" column="cust_id"/> |
| | |
| | | handle_user_name, |
| | | handle_result, |
| | | handle_content, |
| | | handle_illust, |
| | | handle_time, |
| | | delete_status, |
| | | cust_id, |
| | |
| | | <if test="entity.handleUserName != null">handle_user_name = #{entity.handleUserName},</if> |
| | | <if test="entity.handleResult != null">handle_result = #{entity.handleResult},</if> |
| | | <if test="entity.handleContent != null">handle_content = #{entity.handleContent},</if> |
| | | <if test="entity.handleIllust != null">handle_illust = #{entity.handleIllust},</if> |
| | | <if test="entity.handleTime != null">handle_time = #{entity.handleTime},</if> |
| | | <if test="entity.deleteStatus != null">delete_status = #{entity.deleteStatus},</if> |
| | | <if test="entity.custId != null">cust_id = #{entity.custId},</if> |
| | |
| | | <if test="terms.handleContent != null and terms.handleContent !=''"> |
| | | and handle_content = #{terms.handleContent} |
| | | </if> |
| | | <if test="terms.handleIllust != null and terms.handleIllust !=''"> |
| | | and handle_illust = #{terms.handleIllust} |
| | | </if> |
| | | <if test="terms.handleTime != null and terms.handleTime !=''"> |
| | | and handle_time = #{terms.handleTime} |
| | | </if> |