食堂后场人员登录设备密码

This commit is contained in:
sxu 2025-06-30 10:58:30 +08:00
parent f59053f4c5
commit 7ab95f37b7
2 changed files with 8 additions and 1 deletions

View File

@ -49,6 +49,9 @@ public class KitchenStaffInfo extends BaseEntity {
@ApiModelProperty(value = "食堂后场人员手机号") @ApiModelProperty(value = "食堂后场人员手机号")
private String mobile; private String mobile;
@ApiModelProperty(value = "食堂后场人员登录设备密码")
private String password;
/** 食堂后场人员性别 */ /** 食堂后场人员性别 */
@Excel(name = "食堂后场人员性别") @Excel(name = "食堂后场人员性别")
@ApiModelProperty(value = "食堂后场人员性别") @ApiModelProperty(value = "食堂后场人员性别")

View File

@ -10,6 +10,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="staffName" column="staff_name" /> <result property="staffName" column="staff_name" />
<result property="postName" column="post_name" /> <result property="postName" column="post_name" />
<result property="mobile" column="mobile" /> <result property="mobile" column="mobile" />
<result property="password" column="password" />
<result property="sex" column="sex" /> <result property="sex" column="sex" />
<result property="areaId" column="area_id" /> <result property="areaId" column="area_id" />
<result property="faceUrl" column="photo_url" /> <result property="faceUrl" column="photo_url" />
@ -28,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectKitchenStaffInfoVo"> <sql id="selectKitchenStaffInfoVo">
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, 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, 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 ksf.photo_url, ksf.face_state, bc.canteen_name, ba.area_name
@ -98,6 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="staffName != null and staffName != ''">staff_name,</if> <if test="staffName != null and staffName != ''">staff_name,</if>
<if test="postName != null and postName != ''">post_name,</if> <if test="postName != null and postName != ''">post_name,</if>
<if test="mobile != null and mobile != ''">mobile,</if> <if test="mobile != null and mobile != ''">mobile,</if>
<if test="password != null and password != ''">password,</if>
<if test="sex != null">sex,</if> <if test="sex != null">sex,</if>
<if test="areaId != null">area_id,</if> <if test="areaId != null">area_id,</if>
<if test="canteenId != null">canteen_id,</if> <if test="canteenId != null">canteen_id,</if>
@ -116,6 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="staffName != null and staffName != ''">#{staffName},</if> <if test="staffName != null and staffName != ''">#{staffName},</if>
<if test="postName != null and postName != ''">#{postName},</if> <if test="postName != null and postName != ''">#{postName},</if>
<if test="mobile != null and mobile != ''">#{mobile},</if> <if test="mobile != null and mobile != ''">#{mobile},</if>
<if test="password != null and password != ''">#{password},</if>
<if test="sex != null">#{sex},</if> <if test="sex != null">#{sex},</if>
<if test="areaId != null">#{areaId},</if> <if test="areaId != null">#{areaId},</if>
<if test="canteenId != null">#{canteenId},</if> <if test="canteenId != null">#{canteenId},</if>
@ -138,6 +141,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="staffName != null and staffName != ''">staff_name = #{staffName},</if> <if test="staffName != null and staffName != ''">staff_name = #{staffName},</if>
<if test="postName != null and postName != ''">post_name = #{postName},</if> <if test="postName != null and postName != ''">post_name = #{postName},</if>
<if test="mobile != null and mobile != ''">mobile = #{mobile},</if> <if test="mobile != null and mobile != ''">mobile = #{mobile},</if>
<if test="password != null and password != ''">password = #{password},</if>
<if test="sex != null">sex = #{sex},</if> <if test="sex != null">sex = #{sex},</if>
<if test="areaId != null">area_id = #{areaId},</if> <if test="areaId != null">area_id = #{areaId},</if>
<if test="canteenId != null">canteen_id = #{canteenId},</if> <if test="canteenId != null">canteen_id = #{canteenId},</if>