hhhyyq
2021-03-17 45e45ff70ba7cd7889f76cbf489d6bf012a4f84d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
 
    /**
     * 小程序用户车辆列表
     * @param userId
     * @return
     */
    R userComMngCarList(Long userId);
}