GroupsRelationNetflixService.java 502 B

1234567891011121314151617181920
  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);
  12. JSONObject setNetflixPin(Long relationId, long userId);
  13. Integer getPinStatus(String taskId) throws Exception;
  14. }