From bc684a5f99b82ff46b0dc87cc4917ca1b4b88fe1 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Mon, 09 Sep 2024 22:20:12 +0800 Subject: [PATCH] 1、流程优化 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseTaskMapper.xml | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseTaskMapper.xml b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseTaskMapper.xml index 1072d59..61bd449 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseTaskMapper.xml +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseTaskMapper.xml @@ -5,7 +5,7 @@ * @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"> @@ -45,6 +45,7 @@ <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"/> @@ -89,6 +90,7 @@ handle_user_name, handle_result, handle_content, + handle_illust, handle_time, delete_status, cust_id, @@ -130,6 +132,7 @@ <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> @@ -242,6 +245,9 @@ <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> -- Gitblit v1.8.0