From 7ab95f37b716b33a92de791495bc997d5b314311 Mon Sep 17 00:00:00 2001
From: sxu <602087911@qq.com>
Date: Mon, 30 Jun 2025 10:58:30 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A3=9F=E5=A0=82=E5=90=8E=E5=9C=BA=E4=BA=BA?=
=?UTF-8?q?=E5=91=98=E7=99=BB=E5=BD=95=E8=AE=BE=E5=A4=87=E5=AF=86=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../bonus/canteen/core/kitchen/domain/KitchenStaffInfo.java | 3 +++
.../resources/mapper/kitchen/KitchenStaffInfoMapper.xml | 6 +++++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenStaffInfo.java b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenStaffInfo.java
index 0141840..910ea0d 100644
--- a/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenStaffInfo.java
+++ b/bonus-modules/bonus-smart-canteen/src/main/java/com/bonus/canteen/core/kitchen/domain/KitchenStaffInfo.java
@@ -49,6 +49,9 @@ public class KitchenStaffInfo extends BaseEntity {
@ApiModelProperty(value = "食堂后场人员手机号")
private String mobile;
+ @ApiModelProperty(value = "食堂后场人员登录设备密码")
+ private String password;
+
/** 食堂后场人员性别 */
@Excel(name = "食堂后场人员性别")
@ApiModelProperty(value = "食堂后场人员性别")
diff --git a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffInfoMapper.xml b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffInfoMapper.xml
index 75570b5..663fd09 100644
--- a/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffInfoMapper.xml
+++ b/bonus-modules/bonus-smart-canteen/src/main/resources/mapper/kitchen/KitchenStaffInfoMapper.xml
@@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+
@@ -28,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- select kst.staff_id, kst.canteen_id, staff_no, staff_name, post_name, mobile, sex, kst.area_id, health_cert_expire,
+ select kst.staff_id, kst.canteen_id, staff_no, staff_name, post_name, mobile, password, sex, kst.area_id, health_cert_expire,
health_cert_front_img, health_cert_back_img, nutrity_cert_expire,
safety_cert_expire, kst.create_by, kst.create_time, kst.update_by, kst.update_time,
ksf.photo_url, ksf.face_state, bc.canteen_name, ba.area_name
@@ -98,6 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
staff_name,
post_name,
mobile,
+ password,
sex,
area_id,
canteen_id,
@@ -116,6 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{staffName},
#{postName},
#{mobile},
+ #{password},
#{sex},
#{areaId},
#{canteenId},
@@ -138,6 +141,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
staff_name = #{staffName},
post_name = #{postName},
mobile = #{mobile},
+ password = #{password},
sex = #{sex},
area_id = #{areaId},
canteen_id = #{canteenId},