|
|
@@ -15,6 +15,7 @@ import com.cyksj.model.dto.DoubleVerifyDto;
|
|
|
import com.cyksj.model.entity.DoubleVerifyClickRecord;
|
|
|
import com.cyksj.model.entity.DoubleVerifyClickRefreshRecord;
|
|
|
import com.cyksj.model.manage.views.GroupsRelationView;
|
|
|
+import com.cyksj.model.request.NfDeviceReq;
|
|
|
import com.cyksj.model.request.TicketLoginReq;
|
|
|
import com.cyksj.model.views.DoubleVerifyCodeView;
|
|
|
import com.cyksj.model.views.RenewalView;
|
|
|
@@ -89,6 +90,14 @@ public class CorpRelationController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(data.toString());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询是否设置成功
|
|
|
+ */
|
|
|
+ @GetMapping("/get/pin/status/{taskId}")
|
|
|
+ public Result<Integer> getPinStatus(@PathVariable String taskId) throws Exception {
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(groupsRelationNetflixService.getPinStatus(taskId));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 踢出奈飞设备
|
|
|
*/
|
|
|
@@ -98,6 +107,14 @@ public class CorpRelationController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(data.toString());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 代点奈飞同户装置
|
|
|
+ */
|
|
|
+ @PostMapping("/click/nf/household/device")
|
|
|
+ public void clickNfHouseholdDevice(@RequestBody NfDeviceReq nfDeviceReq) {
|
|
|
+ groupsRelationNetflixService.clickNfHouseholdDevice(nfDeviceReq);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 获取双重验证码记录
|
|
|
*/
|