| 123456789101112131415161718192021222324 |
- package com.cyksj.model.response;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * 项目名: yhlxj
- * 文件名: NetflixErrorAccountStatus
- * 创建者: JavaZou
- * 创建时间:2025/6/24 14:34
- */
- @Getter
- @Setter
- public class NetflixErrorAccountStatus {
- /**
- * 账号状态
- */
- private Integer nfStatus;
- /**
- * 申请恢复状态
- */
- private Integer recoverStatus;
- }
|