Merge branch 'master' into cc_20250826_notice
# Conflicts: # coolstore-partner-common/src/main/java/com/cool/store/enums/ErrorCodeEnum.java
This commit is contained in:
@@ -165,8 +165,8 @@ public class EnterpriseUserDAO {
|
||||
return enterpriseUserMapper.getUserListByRegionId(regionId);
|
||||
}
|
||||
|
||||
public List<UserDTO> getAllUser(String eid, String keyword) {
|
||||
return enterpriseUserMapper.getAllUser(eid, keyword);
|
||||
public List<UserDTO> getAllUser(String eid, String keyword,List<Long> roleIdList) {
|
||||
return enterpriseUserMapper.getAllUser(eid, keyword,roleIdList);
|
||||
}
|
||||
|
||||
public List<EnterpriseUserDO> findUserInfoByUserIdsAndKeyword(List<String> userIdList, String keyword) {
|
||||
|
||||
@@ -34,4 +34,8 @@ public class SignFranchiseDAO {
|
||||
}
|
||||
return signFranchiseMapper.getSignType(shopIds);
|
||||
}
|
||||
|
||||
public SignFranchiseDO selectByShopId(Long shopId){
|
||||
return signFranchiseMapper.selectByShopId(shopId);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,7 +92,7 @@ public interface EnterpriseUserMapper {
|
||||
*/
|
||||
List<EnterpriseUserDO> getUserListByRegionId( @Param("regionId") Long regionId);
|
||||
|
||||
List<UserDTO> getAllUser(@Param("eid")String id, @Param("keyword") String keyword);
|
||||
List<UserDTO> getAllUser(@Param("eid")String id, @Param("keyword") String keyword, @Param("roleIdList") List<Long> roleIdList);
|
||||
|
||||
/**
|
||||
* 根据用户id和关键字搜索用户
|
||||
|
||||
@@ -70,4 +70,6 @@ public interface LinePayMapper {
|
||||
Integer updateXgjClaimStatus(@Param("list") List<Long> shopIds,@Param("xgjClaimStatus") Integer xgjClaimStatus,@Param("payBusinessType") Integer payBusinessType);
|
||||
|
||||
Integer deleteByShopId(@Param("list")List<Long> shopIds);
|
||||
|
||||
LinePayDO getLastPay(@Param("shopId") Long shopId);
|
||||
}
|
||||
Reference in New Issue
Block a user