Null
2021-03-17 5f36b7bb9fb215908b1b9b39a972dfe312016bf9
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
@@ -1,6 +1,8 @@
package com.panzhihua.service_community.service;
import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO;
import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO;
import com.panzhihua.common.model.dtos.community.PageComMngCarDTO;
import com.panzhihua.common.model.vos.R;
public interface ComMngCarService {
@@ -18,4 +20,18 @@
     * @return
     */
    R userComMngCarList(Long userId);
    /**
     * 分页查询车辆管理列表
     * @param pageComMngCarDTO
     * @return
     */
    R pageQueryComMngCar(PageComMngCarDTO pageComMngCarDTO);
    /**
     * 新增或修改车辆信息
     * @param comMngCarSaveDTO
     * @return
     */
    R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO);
}