• Shen's avatar
    1. admin模块 用户审核 · 640c5901
    Shen authored
    2. 添加根据用户状态查询用户列表
    3. 移动端对接添加服务人员注册
    4. 添加用户身份绑定
    5. 添加用机构绑定
    640c5901
UserService.java 771 Bytes
package io.hmit.modules.serviceOrder.service;

import io.hmit.common.page.PageData;
import io.hmit.common.service.CrudService;
import io.hmit.modules.serviceOrder.dto.UserDTO;
import io.hmit.modules.serviceOrder.entity.UserEntity;

import java.util.List;
import java.util.Map;

/**
 * 用户
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0 2021-01-27
 */
public interface UserService extends CrudService<UserEntity, UserDTO> {

    void saveOrUpdateUserRole(Long userId, List<Long> roleIdList);

    UserEntity getUserByUserId(Long userId);

    PageData<UserEntity> getOrganizationAllUsers(Map<String, Object> params, Long userId);

    PageData<UserDTO> getOrgStaff(Map<String, Object> params);

    List<UserDTO> getOrgStaffByStatus(Map<String, Object> params);

}