GroupsRelationNetflixService.java 768 B

1234567891011121314151617181920212223242526272829
  1. package com.cyksj.service.relation;
  2. import cn.hutool.json.JSONObject;
  3. import java.util.Date;
  4. /**
  5. * 项目名: yhlxj2
  6. * 文件名: GroupsRelationNetflixService
  7. * 创建者: JavaZou
  8. * 创建时间:2024/6/17 15:44
  9. */
  10. public interface GroupsRelationNetflixService {
  11. JSONObject setNetflixSeatNum(Integer seatNum, String seatName, String account, String password, Date expiryTime, String code);
  12. JSONObject setNetflixPin(Long relationId, long userId, String code);
  13. Integer getPinStatus(String taskId) throws Exception;
  14. Boolean confirmUpdate(String nfUrl);
  15. /**
  16. * 定时设置奈飞座位号
  17. */
  18. void timingSetNetflix(Integer num, String nickname, String account, String password, Date expiryTime);
  19. JSONObject nfKickOut(long userId, Long relationId);
  20. }