Blame view

LaborGroupDictMapper.java 524 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
package com.subsidy.mapper;

import com.subsidy.model.LaborGroupDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.subsidy.vo.labor.AllGroupsVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 伙伴群组字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2024-07-23
 */
@Repository
public interface LaborGroupDictMapper extends BaseMapper<LaborGroupDictDO> {

    List<AllGroupsVO> allGroups(Long laborId);

    Long getProjectId(Long groupId);

}