Administrator
2022-06-16 2ebca060a47784db76369a4aa84f63293da9be33
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -148,7 +148,7 @@
    <select id="selectUserPages" resultMap="userResultMaps">
        select
        bu.*,
        ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING( bu.cardid,7,4),0) age,
        ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(bu.cardid, 7, 8), CURDATE()),0) AS age,
        p.score
        from
        blade_user bu
@@ -205,7 +205,7 @@
    <select id="selectUserPageSecurity" resultMap="userResultMaps">
        select
        bu.*,
        ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING( bu.cardid,7,4),0) age,
        ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(bu.cardid, 7, 8), CURDATE()),0) AS age,
        bd.dept_name as deptName
        from
        blade_user bu
@@ -358,14 +358,16 @@
    <!--根据保安员编码查询保安信息-->
    <select id="getUserInfoBySecurityNumber" resultType="org.springblade.modules.system.vo.UserVO">
        select bu.*,
               ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING(cardid, 7, 4), 0) age,
               bd.dept_name                                                  deptName
               ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(bu.cardid, 7, 8), CURDATE()),0) AS age,
               bd.dept_name deptName
        from blade_user bu
                 left join
             blade_dept bd
             on
                 bu.dept_id = bd.id
        where securitynumber = #{securityNumber}
        and bu.status = 1
        and bu.is_deleted = 0
    </select>
    <!--保安员列表-->
@@ -375,7 +377,7 @@
        bd.dept_name as deptName,
        if(bu.sex=1,'男','女') sex,
        bu.cardid,
        ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING( bu.cardid,7,4),0) age,
        ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(bu.cardid, 7, 8), CURDATE()),0) AS age,
        bu.phone,
        if(bu.examination_type=1,'异常','正常') examinationType,
        bu.examination_mx examinationMx,
@@ -481,7 +483,7 @@
    <select id="selectPeo" resultType="java.util.HashMap">
        select
        bu.*,
        ifnull(DATE_FORMAT(NOW(), '%Y') - SUBSTRING( bu.cardid,7,4),0) age,
        ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(bu.cardid, 7, 8), CURDATE()),0) AS age,
        bd.dept_name as deptName
        from
        blade_user bu
@@ -534,6 +536,60 @@
        <if test="user.type!=null">
            and bu.equipment_code is not null
        </if>
    </select>
    <!--查询当前部门名称及父级部门名称-->
    <select id="getDeptName" resultType="java.lang.String">
        (select dept_name from blade_dept where id = #{deptId} and 1=1)
        union
        (
            select dept_name from blade_dept where id =  (select parent_id from blade_dept where id= #{deptId} and 1=1)
        )
    </select>
    <!--查询用户年龄-->
    <select id="getUserAge" resultType="java.lang.Integer">
        select ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(cardid, 7, 8), CURDATE()),0) AS age from blade_user where id = #{id}
    </select>
    <!--查询保安员证编号前缀-->
    <select id="getSecurityPaperCount" resultType="java.lang.Integer">
        select ifnull(max(0+RIGHT(securitynumber,5)),0) from blade_user
        where securitynumber like concat('%',#{pre},'%')
    </select>
    <!--查询保安员信息-->
    <select id="getSecurityInfoByIdCardNo" resultType="org.springblade.modules.system.vo.UserDTO">
        select
        bu.real_name realName,
        bd.dept_name as deptName,
        if(bu.sex=1,'男','女') sex,
        bu.cardid
        from
        blade_user bu left join blade_dept bd on bu.dept_id = bd.id
        where
        bu.is_deleted = 0
        and role_id = '1412226235153731586'
        and bu.status = 1
        and bu.cardid = #{user.cardid}
    </select>
    <!--通过 身份证号查询用户信息-->
    <select id="getUserInfoByIdCardNo" resultType="org.springblade.modules.system.entity.User">
        SELECT id, name, real_name RealName,securitynumber
        FROM blade_user
        where 1=1
        and is_deleted = 0
        and status = 1
        and cardid = #{param1}
    </select>
    <!--计算保安人员年龄-->
    <select id="getUserAgeById" resultType="org.springblade.modules.system.vo.UserVO">
        select id,real_name realName,ifnull(TIMESTAMPDIFF(YEAR, SUBSTRING(cardid, 7, 8), CURDATE()),0) AS age,securitynumber,cardid
        from
        blade_user
        where
        id = #{userId}
    </select>
</mapper>