java110
2022-08-13 cb7e09de326cf11e17ece4bfd3a69fda7f2b0a75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.java110.api.bmo.machineTranslate;
 
import com.alibaba.fastjson.JSONObject;
import com.java110.dto.machine.CarResultDto;
import com.java110.dto.machine.MachineUserResultDto;
 
/**
 * @ClassName IOwnerMachineTranslateBMO
 * @Description TODO 业主车辆同步实现类
 * @Author wuxw
 * @Date 2020/6/5 8:21
 * @Version 1.0
 * add by wuxw 2020/6/5
 **/
public interface IOwnerCarMachineTranslateBMO {
 
    /**
     * 查询人脸信息
     *
     * @return
     */
    CarResultDto getInfo(JSONObject reqJson);
}