package com.ruoyi.production.service;
|
|
import com.ruoyi.production.bean.vo.ProductionTeamVo;
|
import com.ruoyi.production.bean.vo.TeamLeaderVo;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.production.pojo.ProductionTeamUserRel;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-05-11 11:15:05
|
*/
|
public interface ProductionTeamUserRelService extends IService<ProductionTeamUserRel> {
|
|
/**
|
* 获取所有班组长集合
|
* @return 班组长集合
|
*/
|
List<TeamLeaderVo> listAllLeaders();
|
|
/**
|
* 根据班组长用户ID获取班组成员列表
|
* @param leaderUserId 班组长用户ID
|
* @return 班组成员列表
|
*/
|
List<ProductionTeamVo.MemberVo> listTeamMembersByLeader(Long leaderUserId);
|
}
|