From 5707a599fcf605692ce2849cc9c73f2a81ebfb4c Mon Sep 17 00:00:00 2001
From: sxu <602087911@qq.com>
Date: Thu, 20 Feb 2025 09:15:28 +0800
Subject: [PATCH] area manage
---
.../main/resources/mapper/system/AllocAreaMapper.xml | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/bonus-modules/bonus-system/src/main/resources/mapper/system/AllocAreaMapper.xml b/bonus-modules/bonus-system/src/main/resources/mapper/system/AllocAreaMapper.xml
index d46eee3..ce33b9d 100644
--- a/bonus-modules/bonus-system/src/main/resources/mapper/system/AllocAreaMapper.xml
+++ b/bonus-modules/bonus-system/src/main/resources/mapper/system/AllocAreaMapper.xml
@@ -18,7 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select area_id, parent_id, ancestors, area_name, order_num, status, del_flag, create_by, create_time, update_by, update_time from alloc_area
+ select area_id, parent_id, ancestors, area_name, order_num, status, del_flag, create_by, create_time, update_by, update_time from sys_alloc_area
- insert into alloc_area
+ insert into sys_alloc_area
area_id,
parent_id,
@@ -64,7 +64,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- update alloc_area
+ update sys_alloc_area
parent_id = #{parentId},
ancestors = #{ancestors},
@@ -79,11 +79,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- delete from alloc_area where area_id = #{areaId}
+ delete from sys_alloc_area where area_id = #{areaId}
- delete from alloc_area where area_id in
+ delete from sys_alloc_area where area_id in
#{areaId}