This commit is contained in:
邱贞招 2025-01-13 09:12:28 +08:00
parent 3fa3458f7b
commit 38bc84bab6
15 changed files with 157 additions and 37 deletions

View File

@ -10,7 +10,9 @@ import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.ss.user.domain.UserQuery;
import com.ruoyi.ss.user.service.IUserAssembler;
import com.ruoyi.ss.user.service.IUserService;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
@ -29,6 +31,9 @@ public class UserController extends BaseController
@Resource
private IUserService eUserService;
@Resource
private IUserAssembler userAssembler;
/**
* 获取用户列表
*/
@ -37,6 +42,8 @@ public class UserController extends BaseController
{
startPage();
List<UserVO> list = eUserService.selectUserList(eUser);
/** 店铺数 */
userAssembler.assemblerStoreNum(list);
return getDataTable(list);
}
@ -85,28 +92,28 @@ public class UserController extends BaseController
}
// /**
// * 修改用户
// */
// @Log(title = "用户管理", businessType = BusinessType.UPDATE)
// @PutMapping
// public AjaxResult edit(@Validated @RequestBody EUser user)
// {
// if (!eUserService.checkUserNameUnique(user))
// {
// return error("修改用户'" + user.getUserName() + "'失败,登录账号已存在");
// }
// else if (StringUtils.isNotEmpty(user.getPhonenumber()) && !eUserService.checkPhoneUnique(user))
// {
// return error("修改用户'" + user.getUserName() + "'失败,手机号码已存在");
// }
// else if (StringUtils.isNotEmpty(user.getEmail()) && !eUserService.checkEmailUnique(user))
// {
// return error("修改用户'" + user.getUserName() + "'失败,邮箱账号已存在");
// }
// user.setUpdateBy(getUsername());
// return toAjax(eUserService.updateUser(user));
// }
/**
* 修改用户
*/
@Log(title = "用户管理", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@Validated @RequestBody User user)
{
if (!eUserService.checkUserNameUnique(user))
{
return error("修改用户'" + user.getUserName() + "'失败,登录账号已存在");
}
else if (StringUtils.isNotEmpty(user.getPhonenumber()) && !eUserService.checkPhoneUnique(user))
{
return error("修改用户'" + user.getUserName() + "'失败,手机号码已存在");
}
else if (StringUtils.isNotEmpty(user.getEmail()) && !eUserService.checkEmailUnique(user))
{
return error("修改用户'" + user.getUserName() + "'失败,邮箱账号已存在");
}
user.setUpdateBy(getUsername());
return toAjax(eUserService.updateUser(user));
}
// /**

View File

@ -26,11 +26,6 @@ public @interface DataScope
*/
public String userAlias() default "";
// /**
// * 只是用户隔离 如果是1则只查询当前用户的数据
// */
// public String onlyUser() default "";
/**
* 权限字符用于多个角色匹配符合要求的权限默认根据权限注解@ss获取多个权限用逗号分隔开来
*/

View File

@ -155,6 +155,9 @@ public class User extends BaseEntity
@ApiModelProperty(value = "提前开始使用时间")
private int beforeTime;
@ApiModelProperty(value = "是否设备管理员")
private Boolean deviceAdmin;
public User() {
}

View File

@ -81,6 +81,10 @@ public class Room extends BaseEntity{
@ApiModelProperty("应用到房间的套餐ids")
private List<Long> ruleIds;
@Excel(name = "房间图片")
@ApiModelProperty("房间图片")
private List<String> pictures;
@Excel(name = "wifi账号")
@ApiModelProperty("wifi账号")
private String wifi;

View File

@ -7,6 +7,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<resultMap type="RoomVO" id="ERoomResult" autoMapping="true" >
<result property="tags" column="tags" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
<result property="ruleIds" column="rule_ids" typeHandler="com.ruoyi.system.mapper.typehandler.LongSplitListTypeHandler"/>
<result property="pictures" column="picture" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
</resultMap>
<sql id="selectERoomVo">

View File

@ -146,6 +146,10 @@ public class Store extends BaseEntity{
@ApiModelProperty("房间类型标签")
private List<String> typeTags;
@Excel(name = "店铺图片")
@ApiModelProperty("店铺图片")
private List<String> pictures;
@Excel(name = "起订时间")
@ApiModelProperty("起订时间")
private String minimumTime;

View File

@ -89,4 +89,11 @@ public interface StoreMapper
* @return String
*/
int offlineDeviceByDeviceId(Long deviceId);
/**
* 获取店铺总数
* @param userId
* @return
*/
int selectCount(Long userId);
}

View File

@ -7,6 +7,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<resultMap type="StoreVO" id="EStoreResult" autoMapping="true">
<result property="tags" column="tags" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
<result property="typeTags" column="type_tags" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
<result property="pictures" column="picture" typeHandler="com.ruoyi.system.mapper.typehandler.StringSplitListTypeHandler"/>
</resultMap>
<sql id="selectEStoreVo">
@ -103,6 +104,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select count(1) from ss_store where find_in_set(#{type}, type_tags) and store_id = #{storeId} and deleted = 0
</select>
<select id="selectCount" resultType="java.lang.Integer">
select count(1) from ss_store where merchant_id = #{userId} and deleted = 0
</select>
<update id="updateStoreTypeTags">
UPDATE ss_store

View File

@ -121,4 +121,11 @@ public interface IStoreService
* @return String
*/
int offlineDeviceByDeviceId(Long deviceId);
/**
* 获取用户已创建店铺数量
* @param userId 用户id
* @return int
*/
int selectCount(Long userId);
}

View File

@ -373,6 +373,16 @@ public class StoreServiceImpl implements IStoreService
return storeMapper.offlineDeviceByDeviceId(deviceId);
}
/**
* 获取用户已创建店铺数量
* @param userId 用户id
* @return int
*/
@Override
public int selectCount(Long userId) {
return storeMapper.selectCount(userId);
}
private Double getDistance(String phoneLon, String phoneLat, BigDecimal lng, BigDecimal lat) {
double[] point1 = {Double.parseDouble(phoneLon), Double.parseDouble(phoneLat)};
double[] point2 = {lng.doubleValue(), lat.doubleValue()};

View File

@ -26,10 +26,10 @@ public class UserVO extends User
/** 用户最多余额 */
private BigDecimal balance;
// /** 用户余额list */
// private List<UserBalance> userBalances;
/** 店铺名称 */
private String storeName;
/** 店铺数 */
private int storeNum;
}

View File

@ -20,7 +20,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="selectUserVo">
select u.user_id, u.user_name, u.real_name, u.id_card, u.nick_name, u.email, u.avatar,u.user_type,u.pay_channel,u.merchant_id,dividend_proportion,
u.phonenumber, u.password, u.sex, u.status,u.service_fee_proportion,u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty, u.before_time,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,store_id,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,u.store_id,u.device_admin,
r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status as role_status,u.balance
from ss_user u
left join sys_user_role ur on u.user_id = ur.user_id
@ -30,14 +30,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="selectUserVo2">
select u.user_id, u.user_name, u.real_name, u.id_card, u.nick_name, u.email, u.avatar,u.user_type,u.pay_channel,u.merchant_id,dividend_proportion,
u.phonenumber, u.password, u.sex, u.status, u.service_fee_proportion,u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty, u.before_time,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,store_id,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,u.store_id,u.device_admin,
u.balance
from ss_user u
</sql>
<select id="selectUserList" parameterType="UserQuery" resultMap="EUserResult">
select u.user_id, u.nick_name, u.user_name, u.real_name,u.email, u.avatar, u.phonenumber,u.user_type,u.service_fee_proportion,
u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty,pay_channel,merchant_id,store_id,
u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty,u.pay_channel,u.merchant_id,u.store_id,u.device_admin,
u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.is_authentication, u.balance,
u.wxopenid from ss_user u
where u.del_flag = '0' and u.user_name != 'admin'
@ -123,7 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectUserById" parameterType="Long" resultMap="EUserResult">
select u.user_id, u.user_name, u.real_name, u.id_card, u.nick_name, u.email, u.avatar,u.service_fee_proportion,pay_channel,merchant_id,u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty,
u.phonenumber, u.password, u.sex, u.status,u.user_type,r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status, u.balance,
u.phonenumber, u.password, u.sex, u.status,u.user_type,r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.status, u.balance,u.device_admin,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,u.pay_channel
from ss_user u
left join sys_user_role ur on u.user_id = ur.user_id
@ -133,7 +133,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectAppUserById" parameterType="Long" resultMap="EUserResult">
select u.user_id, u.user_name, u.real_name, u.id_card, u.nick_name, u.email, u.avatar,u.service_fee_proportion,u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty,
u.phonenumber, u.password, u.sex, u.status,u.user_type,u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time,u.balance,u.before_time,
u.phonenumber, u.password, u.sex, u.status,u.user_type,u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time,u.balance,u.before_time,u.device_admin,
u.remark,u.wxopenid,u.is_authentication,u.pay_channel,ub.balance
from ss_user u
left join ss_user_balance ub on ub.user_id = u.user_id
@ -146,7 +146,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="myAccountInfoByUserId" parameterType="Long" resultMap="EUserResult">
select u.user_id, u.user_name, u.real_name, u.id_card, u.nick_name, u.email, u.avatar,
u.phonenumber, u.password, u.sex, u.status,u.user_type,u.service_fee_proportion,u.clean_duration, u.clean_notice,u.ago_cancel,u.penalty,u.before_time,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,u.pay_channel,
u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark,u.wxopenid,u.is_authentication,u.pay_channel,u.device_admin,
ub.balance
from ss_user u
left join ss_user_balance ub on ub.user_id = u.user_id
@ -253,6 +253,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="userName != null and userName != ''">user_name,</if>
<if test="realName != null and realName != ''">real_name,</if>
<if test="userType != null and userType != ''">user_type,</if>
<if test="deviceAdmin != null and deviceAdmin != ''">device_admin,</if>
<if test="idCard != null and idCard != ''">id_card,</if>
<if test="nickName != null and nickName != ''">nick_name,</if>
<if test="email != null and email != ''">email,</if>
@ -277,6 +278,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="userName != null and userName != ''">#{userName},</if>
<if test="realName != null and realName != ''">#{realName},</if>
<if test="userType != null and userType != ''">#{userType},</if>
<if test="deviceAdmin != null and deviceAdmin != ''">#{deviceAdmin},</if>
<if test="idCard != null and idCard != ''">#{idCard},</if>
<if test="nickName != null and nickName != ''">#{nickName},</if>
<if test="email != null and email != ''">#{email},</if>
@ -307,6 +309,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="idCard != null and idCard != ''">id_card = #{idCard},</if>
<if test="nickName != null and nickName != ''">nick_name = #{nickName},</if>
<if test="userType != null and userType != ''">user_type = #{userType},</if>
<if test="deviceAdmin != null">device_admin = #{deviceAdmin},</if>
<if test="email != null ">email = #{email},</if>
<if test="phonenumber != null ">phonenumber = #{phonenumber},</if>
<if test="isAuthentication != null">is_authentication = #{isAuthentication},</if>

View File

@ -0,0 +1,21 @@
package com.ruoyi.ss.user.service;
import com.ruoyi.ss.user.domain.UserVO;
import java.util.List;
/**
* 用户 业务层
*
* @author ruoyi
*/
public interface IUserAssembler
{
/**
* 拼接店铺数
* @param list 用户列表
*/
void assemblerStoreNum(List<UserVO> list);
}

View File

@ -0,0 +1,39 @@
package com.ruoyi.ss.user.service.impl;
import com.ruoyi.common.utils.collection.CollectionUtils;
import com.ruoyi.ss.store.service.IStoreService;
import com.ruoyi.ss.user.domain.UserVO;
import com.ruoyi.ss.user.service.IUserAssembler;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* 用户 业务层处理
*
* @author ruoyi
*/
@Slf4j
@Service
public class UserAssemblerImpl implements IUserAssembler {
@Autowired
private IStoreService storeService;
/**
* 拼接店铺数
* @param list 用户列表
*/
@Override
public void assemblerStoreNum(List<UserVO> list) {
if (CollectionUtils.isEmptyElement(list)) {
return;
}
list.forEach(user -> {
user.setStoreNum(storeService.selectCount(user.getUserId()));
});
}
}

View File

@ -75,7 +75,22 @@
</select>
<select id="selectMenuTreeByUserId" parameterType="Long" resultMap="SysMenuResult">
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.route_name, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
select distinct m.menu_id,
m.parent_id,
m.menu_name,
m.path,
m.component,
m.`query`,
m.route_name,
m.visible,
m.status,
ifnull(m.perms,'') as perms,
m.is_frame,
m.is_cache,
m.menu_type,
m.icon,
m.order_num,
m.create_time
from sys_menu m
left join sys_role_menu rm on m.menu_id = rm.menu_id
left join sys_user_role ur on rm.role_id = ur.role_id