1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.panzhihua.service_community.service;
|
| import com.panzhihua.common.model.dtos.community.ComMngCarAppletDTO;
| import com.panzhihua.common.model.vos.R;
|
| public interface ComMngCarService {
|
| /**
| * 小程序端:添加车辆信息
| * @param comCvtBusinessDTO
| * @return
| */
| R addComMngCarApplet(ComMngCarAppletDTO comCvtBusinessDTO);
| }
|
|