| | |
| | | package com.ruoyi.production.service;
|
| | |
|
| | | import com.ruoyi.production.pojo.ProductionTeamUserRel;
|
| | | 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>
|
| | |
| | | */
|
| | | public interface ProductionTeamUserRelService extends IService<ProductionTeamUserRel> {
|
| | |
|
| | | /**
|
| | | * 获取所有班组长集合
|
| | | * @return 班组长集合
|
| | | */
|
| | | List<TeamLeaderVo> listAllLeaders();
|
| | |
|
| | | /**
|
| | | * 根据班组长用户ID获取班组成员列表
|
| | | * @param leaderUserId 班组长用户ID
|
| | | * @return 班组成员列表
|
| | | */
|
| | | List<ProductionTeamVo.MemberVo> listTeamMembersByLeader(Long leaderUserId);
|
| | | }
|