Your Name
2023-04-17 da3b5c72fa45bc26a9868c2b26e3efda14845179
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.java110.api.bmo.machineTranslate;
 
import com.alibaba.fastjson.JSONObject;
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 IApplicationKeyMachineTranslateBMO {
 
    /**
     * 查询人脸信息
     *
     * @return
     */
    MachineUserResultDto getPhotoInfo(JSONObject reqJson);
}