From 1996c607817b723cd1d730a0df00b4f2dfcd9c21 Mon Sep 17 00:00:00 2001 From: "lj7788@126.com" Date: Tue, 16 Sep 2025 17:59:54 +0800 Subject: [PATCH] =?UTF-8?q?9.16=E5=91=98=E5=B7=A5=E5=87=BA=E5=85=A5?= =?UTF-8?q?=E5=9C=BA=E8=AE=B0=E5=BD=95=E5=8A=9F=E8=83=BD=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../manage/domain/ProUserInoutRecord.java | 11 + .../manage/ProUserInoutRecordMapper.xml | 6 +- .../service/IProUserInoutRecordService.java | 9 + ...roProjectInfoSubdeptsUsersServiceImpl.java | 5 + .../impl/ProUserInoutRecordServiceImpl.java | 27 ++- .../views/manage/userInOutRecord/index.vue | 203 +++++------------- 6 files changed, 114 insertions(+), 147 deletions(-) diff --git a/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/ProUserInoutRecord.java b/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/ProUserInoutRecord.java index e8f297aa..9b2329d0 100644 --- a/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/ProUserInoutRecord.java +++ b/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/ProUserInoutRecord.java @@ -70,6 +70,17 @@ public class ProUserInoutRecord extends BaseEntity @Excel(name = "工种类型") private String craftType; + @Excel(name = "用户岗位") + private String userPost; + + public String getUserPost() { + return userPost; + } + + public void setUserPost(String userPost) { + this.userPost = userPost; + } + /** 工种岗位 */ @Excel(name = "工种岗位") private String craftPost; diff --git a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProUserInoutRecordMapper.xml b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProUserInoutRecordMapper.xml index 2bbaf7fb..6b356408 100644 --- a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProUserInoutRecordMapper.xml +++ b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/ProUserInoutRecordMapper.xml @@ -15,6 +15,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + @@ -30,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - select id, project_id, user_id, user_name, user_phone, user_picture, user_sex, use_status, sub_dept_id, sub_dept_name, sub_dept_type, sub_dept_group, sub_dept_group_name, craft_type, craft_post, is_del, remark, state, create_by, create_time, update_by, update_time from pro_user_inout_record + select id, project_id, user_id, user_name, user_phone,user_post, user_picture, user_sex, use_status, sub_dept_id, sub_dept_name, sub_dept_type, sub_dept_group, sub_dept_group_name, craft_type, craft_post, is_del, remark, state, create_by, create_time, update_by, update_time from pro_user_inout_record