From 03a3edee9ff27fa9bb4b32dcda08e279c7c094c8 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期五, 28 十一月 2025 17:30:11 +0800
Subject: [PATCH] 功能修改
---
multi-system/src/main/resources/mapper/system/InternalAuditCarryMapper.xml | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/multi-system/src/main/resources/mapper/system/InternalAuditCarryMapper.xml b/multi-system/src/main/resources/mapper/system/InternalAuditCarryMapper.xml
index f6fc669..a886d50 100644
--- a/multi-system/src/main/resources/mapper/system/InternalAuditCarryMapper.xml
+++ b/multi-system/src/main/resources/mapper/system/InternalAuditCarryMapper.xml
@@ -2,10 +2,10 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gkhy.exam.system.mapper.InternalAuditCarryMapper">
<insert id="insertCarryDept">
- INSERT INTO`internal_audit_carry_dept` (`carry_id`, `dept_id`, `date`, `time`, `check_id` )
+ INSERT INTO`internal_audit_carry_dept` (`carry_id`, `dept_id`,`date`, `start_time`, `end_time`, `check_id` )
VALUES
<foreach collection="deptList" separator="," item="item">
- ( #{item.carryId}, #{item.deptId}, #{item.date}, #{item.time}, #{item.checkId} )
+ ( #{item.carryId}, #{item.deptId},#{item.date}, #{item.startTime}, #{item.endTime}, #{item.checkId} )
</foreach>
</insert>
<delete id="deletedCarryDeptByCarryId">
@@ -61,7 +61,8 @@
iacd.`dept_id`,
sd.dept_name,
iacd.`date`,
- iacd.`time`,
+ iacd.`start_time`,
+ iacd.`end_time`,
iacd.`check_id` ,
su.`name` as check_name
FROM
--
Gitblit v1.9.2