From 37f55403e7573d8c15b6b0f957b7cb1baf6be4ea Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期二, 29 十二月 2020 14:47:15 +0800 Subject: [PATCH] 攀枝花项目服务层异常捕获统一返回给视图层服务 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java | 125 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 125 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java new file mode 100644 index 0000000..6fc691f --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/dao/UserDao.java @@ -0,0 +1,125 @@ +package com.panzhihua.service_user.dao; + + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.panzhihua.common.model.vos.LoginUserInfoVO; +import com.panzhihua.common.model.vos.user.AdministratorsUserVO; +import com.panzhihua.service_user.model.dos.SysUserDO; +import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; +import org.apache.ibatis.annotations.Select; + +/** + * @program: springcloud_k8s_panzhihuazhihuishequ + * @description: 用户 + * @author: huang.hongfa weixin hhf9596 qq 959656820 + * @create: 2020-11-20 15:55 + **/ +@Mapper +public interface UserDao extends BaseMapper<SysUserDO> { + // @Select("<script> " + +// " <where>" + +// "<if test='nameCn != null and nameCn.trim() != ""'>" + +// " </if> " + +// "<if test='nameCn != null and nameCn.trim() != ""'>" + +// " </if> " + +// "<if test='nameCn != null and nameCn.trim() != ""'>" + +// " </if> " + +// " </where>" + +// "</script>") + + @Select("<script> " + + "SELECT\n" + + "u.user_id,\n" + + "u.face_url,\n" + + "u.nick_name,\n" + + "u.`name`,\n" + + "u.phone,\n" + + "u.id_card,\n" + + "u.face_state,\n" + + "c.NAME,\n" + + "is_tanant,\n" + + "u.create_at \n" + + "FROM\n" + + "sys_user u\n" + + "JOIN com_act c ON u.community_id = c.community_id \n" + + "<if test='loginUserInfoVO.name != null and loginUserInfoVO.name.trim() != ""'>" + + "AND c.`name` = #{loginUserInfoVO.name} \n" + + " </if> " + + " <where>" + + "<if test='loginUserInfoVO.communityName != null and loginUserInfoVO.communityName.trim() != ""'>" + + "and u.`name` = #{loginUserInfoVO.communityName} \n" + + " </if> " + + "<if test='loginUserInfoVO.phone != null and loginUserInfoVO.phone.trim() != ""'>" + + "AND u.phone = #{loginUserInfoVO.phone}" + + " </if> " + + " </where>" + + " order by u.face_state asc,u.create_at asc " + + "</script>") + IPage<LoginUserInfoVO> pageUserFace(Page page, @Param("loginUserInfoVO") LoginUserInfoVO loginUserInfoVO); + + @Select("<script> " + + "SELECT\n" + + "u.user_id,\n" + + "u.`name`,\n" + + "u.nick_name,\n" + + "u.phone,\n" + + "u.id_card,\n" + + "u.job,\n" + + "c.NAME,\n" + + "u.is_tanant,\n" + + "u.tags,\n" + + "u.create_at \n" + + "FROM\n" + + "sys_user u\n" + + "LEFT JOIN com_act c ON u.community_id = c.community_id \n" + + "<if test='loginUserInfoVO.communityName != null and loginUserInfoVO.communityName.trim() != ""'>" + + "AND c.`name` = #{loginUserInfoVO.communityName} \n" + + " </if> " + + " <where>" + + "<if test='loginUserInfoVO.name != null and loginUserInfoVO.name.trim() != ""'>" + + " and u.`name` = #{loginUserInfoVO.name} \n" + + " </if> " + + "<if test='loginUserInfoVO.phone != null and loginUserInfoVO.phone.trim() != ""'>" + + "AND u.phone = #{loginUserInfoVO.phone}" + + " </if> " + + " </where>" + + "</script>") + IPage<LoginUserInfoVO> pageUser(Page page, @Param("loginUserInfoVO") LoginUserInfoVO loginUserInfoVO); + + @Select("<script> " + + "SELECT\n" + + "u.user_id,\n" + + "u.account,\n" + + "u.`name`,\n" + + "u.phone,\n" + + "e.role_name,\n" + + "u.`status`,\n" + + "u.create_at,\n" + + "u.last_login_time \n" + + "FROM\n" + + "sys_user u\n" + + "JOIN sys_user_role r ON u.user_id = r.user_id\n" + + "JOIN sys_role e ON r.role_id = e.role_id \n" + + "<if test='administratorsUserVO.roleId != null and administratorsUserVO.roleId!=0'>" + + " and e.role_id=#{administratorsUserVO.roleId}"+ + " </if> " + + " <where>" + + "<if test='administratorsUserVO.communityId != null '>" + + "AND u.community_id = #{administratorsUserVO.communityId} \n" + + " </if> " + + "<if test='administratorsUserVO.name != null and administratorsUserVO.name.trim() != ""'>" + + "AND u.name = #{administratorsUserVO.name} \n" + + " </if> " + + "<if test='administratorsUserVO.phone != null and administratorsUserVO.phone.trim() != ""'>" + + "AND u.phone = #{administratorsUserVO.phone}" + + " </if> " + + "<if test='administratorsUserVO.account != null and administratorsUserVO.account.trim() != ""'>" + + "AND u.account = #{administratorsUserVO.account}" + + " </if> " + + " </where>" + + "</script>") + IPage<AdministratorsUserVO> pageUserBackstage(Page page, @Param("administratorsUserVO") AdministratorsUserVO administratorsUserVO); +} -- Gitblit v1.7.1