| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.project.domain.ServiceFundtax; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @author ruoyi |
| | | * @date 2024-03-13 |
| | | */ |
| | | public interface ServiceFundtaxMapper extends BaseMapper<ServiceFundtax> |
| | | { |
| | | @Mapper |
| | | public interface ServiceFundtaxMapper extends BaseMapper<ServiceFundtax> { |
| | | /** |
| | | * 查询专家费用算税申请主列表 |
| | | * |
| | |
| | | * @return 专家费用算税申请主集合 |
| | | */ |
| | | public List<ServiceFundtax> selectServiceFundtaxList(ServiceFundtax serviceFundtax); |
| | | |
| | | /** |
| | | * 获取ID最大值 |
| | | * |
| | | * @return |
| | | */ |
| | | public Integer getMaxFundTaxId(); |
| | | } |