| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | import org.apache.ibatis.annotations.Update; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | |
| | | |
| | | @Select("<script> " + |
| | | "select \n" + |
| | | "u.userId,\n" + |
| | | "u.user_id,\n" + |
| | | "u.phone,\n" + |
| | | "u.nick_name,\n" + |
| | | "u.name,\n" + |
| | | "a.name communityName,\n" + |
| | | "a.status,\n" + |
| | | "a.create_at,\n" + |
| | | "a.last_login_time\n" + |
| | | "u.status,\n" + |
| | | "u.create_at,\n" + |
| | | "u.last_login_time\n" + |
| | | "from sys_user u\n" + |
| | | "left join com_act a on u.community_id=a.community_id\n" + |
| | | " <where>" + |
| | |
| | | "order by u.create_at desc \n" + |
| | | "</script>") |
| | | IPage<SysUserVO> pageUserAppletsBackstage(Page page, @Param("pageUserAppletsBackstageDTO") PageUserAppletsBackstageDTO pageUserAppletsBackstageDTO); |
| | | @Update("update sys_user set nick_name=null ,community_id=null,area_id=null where user_id=#{userId}") |
| | | int deleteUserTest(Long userId); |
| | | } |