// // newWorkInterface.h // 隐私保护 // // Created by xd h on 2023/10/8. // #ifndef newWorkInterface_h #define newWorkInterface_h /*1 根据盒子SN号获取对应信息 get请求 输入参数 sn 贴在盒子上的sn好 返回数据模型 */ #define getThirdIdBySn @"/box/queryThirdId" /*2 修改/保存密码 POST请求 输入参数 sn 贴在盒子上的sn好 输入参数 password 用户输入的密码 返回数据模型 */ #define updateCardInfo @"/box/updateCardInfo" /*3 调用升级接口 get请求 输入参数 type OS:ios 输入参数 source stealth:隐私盒子,skyworth:创维盒子 返回数据模型 */ #define upgradeNewVersion @"/box/upgrade/new/version" /*4 修改隐私模式 POST请求 输入参数 sn 输入参数 isPrivacyMode true:开启隐私模式 false:关闭隐私模式 返回数据模型 */ #define updatePrivacyMode @"/box/updatePrivacyMode" /*5 是否需要强制重启 POST请求 输入参数 sn 输入参数 isForceStart 是否强制重启 返回数据模型 */ #define updateForceStart @"/box/updateForceStart" #endif /* newWorkInterface_h */