package com.thhy.staff.modules.biz.face.service; import com.alibaba.fastjson.JSONObject; import com.thhy.staff.modules.biz.face.entity.FaceResult; public interface FaceServer { FaceResult login(String mess); JSONObject syncPerson(String mess); JSONObject syncPersonSingle(String mess); void personNotify(String mess); void record(String mess); void queryPer(String perId); void removeNotify(String mess); }