huanghongfa
2021-05-28 54ad966d0b142c97fc659263b51d1ea5d7b5c7c6
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
@@ -4,6 +4,9 @@
import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO;
import com.panzhihua.common.model.dtos.community.PageComMngCarDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.ComMngCarExcelVO;
import java.util.List;
public interface ComMngCarService {
@@ -34,4 +37,19 @@
     * @return
     */
    R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO);
    /**
     * 删除车辆信息
     * @param id
     * @return
     */
    R deleteComMngCar(Long id);
    /**
     * 批量导入车辆信息
     * @param list
     * @param communityId
     * @return
     */
    R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId);
}