package com.artfess.yhxt.budget.dao;

import com.artfess.yhxt.basedata.model.Road;
import com.artfess.yhxt.budget.model.YearBudget;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Constants;
import org.apache.ibatis.annotations.Param;

/**
 * 年度总预算表 Mapper 接口
 *
 * @company 阿特菲斯信息技术有限公司
 * @author xzh
 * @since 2021-08-02
 */
public interface YearBudgetDao extends BaseMapper<YearBudget> {


    IPage<YearBudget> queryYearBuget(IPage<YearBudget> convert2IPage, @Param(Constants.WRAPPER)  Wrapper<YearBudget> convert2Wrapper);
}
