You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 line
503 B

  1. package com.yzx;
  2. import com.yzx.impl.CardTemplateInfo;
  3. import com.yzx.pojo.UserFaceInfo;
  4. import java.util.List;
  5. public interface IHardwareEquipment {
  6. /**
  7. * 释放sdk资源
  8. */
  9. void cleanup();
  10. String getDeployInfo();
  11. //获取状态
  12. int getStatus();
  13. int setCardTemplate(CardTemplateInfo info);
  14. CardTemplateInfo getCardTemplate(int templateId);
  15. void modifyUserInfo(List<UserFaceInfo> userFaceInfos);
  16. UserFaceInfo searchUserInfo(String employeeNo);
  17. }