package com.cyksj.service.relation; import cn.hutool.json.JSONObject; import java.util.Date; /** * 项目名: yhlxj2 * 文件名: GroupsRelationNetflixService * 创建者: JavaZou * 创建时间:2024/6/17 15:44 */ public interface GroupsRelationNetflixService { JSONObject setNetflixSeatNum(Integer seatNum, String seatName, String account, String password, Date expiryTime); JSONObject setNetflixPin(Long relationId, long userId); Integer getPinStatus(String taskId) throws Exception; }