package com.yiboshi.science.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.yiboshi.science.base.BaseDAO; import com.yiboshi.science.entity.ComTalentBudget; import com.yiboshi.science.param.dto.ComTalentBudgetDTO; import com.yiboshi.science.param.query.ComTalentBudgetQueryVO; import java.util.List; /** * 申报人培养经费预算表 */ public interface ComTalentBudgetDAO extends BaseMapper<ComTalentBudget>, BaseDAO<ComTalentBudgetQueryVO, ComTalentBudgetDTO, ComTalentBudget> { List<ComTalentBudgetDTO> getListByTalentId(String talentId); }