From 47d62ab66ae4c1a5a8a29c37a673cc637c823120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=E4=BA=AE?= Date: Tue, 3 Feb 2026 11:16:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=80=E4=B8=AAbirthday?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/WorkerMapper.xml | 13 ++++++------- .../src/main/resources/mapper/job/PmTaskMapper.xml | 1 + 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/bonus-business/src/main/resources/mapper/WorkerMapper.xml b/bonus-business/src/main/resources/mapper/WorkerMapper.xml index 3b0d734..9276f87 100644 --- a/bonus-business/src/main/resources/mapper/WorkerMapper.xml +++ b/bonus-business/src/main/resources/mapper/WorkerMapper.xml @@ -4,13 +4,12 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - insert into pm_worker (worker_name,org_id,sex,phone,create_time) - values (#{workerName},#{orgId},#{sex},#{phone},#{createTime}) + insert into pm_worker (worker_name,org_id,sex,phone,birthday) + values (#{workerName},#{orgId},#{sex},#{phone},#{birthday}) update pm_worker - worker_name=#{workerName}, @@ -23,8 +22,8 @@ phone=#{phone}, - - update_time=#{updateTime}, + + birthday=#{birthday}, where id = #{id} @@ -34,7 +33,7 @@