liusheng
2024-03-15 4c42cd3d556ea72d70ea43a734cc38acd6b81e74
ruoyi-project/src/main/java/com/ruoyi/project/mapper/ServiceFundtaxMapper.java
@@ -3,6 +3,7 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.project.domain.ServiceFundtax;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@@ -12,8 +13,8 @@
 * @author ruoyi
 * @date 2024-03-13
 */
public interface ServiceFundtaxMapper extends BaseMapper<ServiceFundtax>
{
@Mapper
public interface ServiceFundtaxMapper extends BaseMapper<ServiceFundtax> {
    /**
     * 查询专家费用算税申请主列表
     *
@@ -21,4 +22,11 @@
     * @return 专家费用算税申请主集合
     */
    public List<ServiceFundtax> selectServiceFundtaxList(ServiceFundtax serviceFundtax);
    /**
     * 获取ID最大值
     *
     * @return
     */
    public Integer getMaxFundTaxId();
}