zhangzeli
2022-01-05 435b1cfe40ee2822381274d3a0a4f9066157b02b
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/service/ICarService.java
@@ -1,5 +1,6 @@
package cn.exrick.xboot.your.service;
import cn.exrick.xboot.your.vo.Month;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
@@ -15,4 +16,12 @@
public interface ICarService extends IService<Car> {
    IPage<Car> page2(Page initMpPage, QueryWrapper<Car> wrapper);
    IPage<Car> getAll2(Page initMpPage);
    List<Car> getCarInfo();
    List<Car> getCarInfo2(QueryWrapper<Car> wrapper);
    Month getCarCount(Integer year);
}