From ec14b0557b1bca09f1a9cc52b5428de2a9d9056d Mon Sep 17 00:00:00 2001 From: lijun Date: Tue, 15 Oct 2024 23:22:33 +0800 Subject: [PATCH] update code --- .../manage/domain/AttendanceUbiData.java | 19 ++ .../mapper/manage/AttendanceUbiDataMapper.xml | 18 +- .../AttendanceUbiDeviceController.java | 2 +- .../controller/UniCallBackController.java | 4 +- .../service/IAttendanceUbiDeviceService.java | 3 +- .../impl/AttendanceUbiDeviceServiceImpl.java | 10 +- yanzhu-ui-vue3/package.json | 38 ++-- .../src/layout/components/Settings/index.vue | 5 +- .../{components => lib}/vform/designer.umd.js | 0 yanzhu-ui-vue3/src/main.js | 8 +- yanzhu-ui-vue3/src/router/index.js | 4 +- yanzhu-ui-vue3/src/utils/request.js | 2 +- .../views/manage/attendanceUbiData/index.vue | 164 +++++++++++------- .../proProjectInfoSubdeptsUsers/index.vue | 2 +- yanzhu-ui-vue3/vite.config.js | 15 +- yanzhu-ui-vue3/vite/plugins/setup-extend.js | 4 +- 16 files changed, 191 insertions(+), 107 deletions(-) rename yanzhu-ui-vue3/src/{components => lib}/vform/designer.umd.js (100%) diff --git a/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/AttendanceUbiData.java b/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/AttendanceUbiData.java index 32e25f90..0eae0681 100644 --- a/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/AttendanceUbiData.java +++ b/yanzhu-common/yanzhu-common-mapper/src/main/java/com/yanzhu/manage/domain/AttendanceUbiData.java @@ -83,6 +83,25 @@ public class AttendanceUbiData extends BaseEntity @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") private Long state; + private Long subDeptId; + private String subDeptName; + + public Long getSubDeptId() { + return subDeptId; + } + + public void setSubDeptId(Long subDeptId) { + this.subDeptId = subDeptId; + } + + public String getSubDeptName() { + return subDeptName; + } + + public void setSubDeptName(String subDeptName) { + this.subDeptName = subDeptName; + } + private String comName; public String getComName() { diff --git a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/AttendanceUbiDataMapper.xml b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/AttendanceUbiDataMapper.xml index ab894517..808d016f 100644 --- a/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/AttendanceUbiDataMapper.xml +++ b/yanzhu-common/yanzhu-common-mapper/src/main/resources/mapper/manage/AttendanceUbiDataMapper.xml @@ -10,6 +10,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + @@ -35,27 +37,28 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" select id, comId, projectId, userId, userName, sub_dept_group, sub_dept_group_name, craft_type, craft_post,admitGuid, - eventGuid,inPhoto,outPhoto,comName,projectName, + eventGuid,inPhoto,outPhoto,comName,projectName,sub_dept_id,sub_dept_name, inTime, outTime, deviceNo, is_del, state, remark, create_by, create_time, update_by, update_time from attendance_ubi_data select id, comId, projectId, userId, userName, sub_dept_group, sub_dept_group_name, craft_type, craft_post,admitGuid, - eventGuid,inPhoto,outPhoto,inData,outData,comName,projectName, + eventGuid,inPhoto,outPhoto,inData,outData,comName,projectName,sub_dept_id,sub_dept_name, inTime, outTime, deviceNo, is_del, state, remark, create_by, create_time, update_by, update_time from attendance_ubi_data