罗元桥
2021-08-05 cc1098fc00a50cb1591d182f04bc37066ff0a9e2
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComMngCarService.java
@@ -2,8 +2,13 @@
import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO;
import com.panzhihua.common.model.dtos.community.ComMngCarSaveDTO;
import com.panzhihua.common.model.dtos.community.ExportComMngCarExcelDTO;
import com.panzhihua.common.model.dtos.community.PageComMngCarDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.ComMngCarExcelVO;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
public interface ComMngCarService {
@@ -34,4 +39,27 @@
     * @return
     */
    R saveComMngCar(ComMngCarSaveDTO comMngCarSaveDTO);
    /**
     * 删除车辆信息
     * @param id
     * @return
     */
    R deleteComMngCar(Long id);
    /**
     * 批量导入车辆信息
     * @param list
     * @param communityId
     * @return
     */
    R listSaveMngCarExcelVO(List<ComMngCarExcelVO> list, Long communityId);
    /**
     * 车辆导出
     *
     * @param exportComMngCarExcelDTO
     * @return
     */
    R exportRealCar(ExportComMngCarExcelDTO exportComMngCarExcelDTO);
}