| | |
| | | |
| | | import com.xzx.gc.entity.UserHeadRelate; |
| | | import com.xzx.gc.user.vo.HeadInfoVo; |
| | | import com.xzx.gc.user.vo.HeadTeamVo; |
| | | import com.xzx.gc.util.GcMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface UserHeadRelateMapper extends GcMapper<UserHeadRelate> { |
| | | |
| | | UserHeadRelate selectMemberByUserId(@Param("userId") String userId); |
| | | |
| | | HeadInfoVo selectHeadStatisticsData(@Param("userId") String userId); |
| | | |
| | | List<HeadTeamVo> selectHeadTeamListInPage(@Param("userId") String userId); |
| | | } |