// // RQHTTPServiceConstant.h // RQCommon // // Created by 张嵘 on 2018/11/16. // Copyright © 2018 张嵘. All rights reserved. // #ifndef RQHTTPServiceConstant_h #define RQHTTPServiceConstant_h /// 服务器相关 #define RQHTTPRequestTokenKey @"token" /// 私钥key #define RQHTTPServiceKey @"privatekey" /// 私钥Value #define RQHTTPServiceKeyValue @"/** 你的私钥 **/" /// 签名key #define RQHTTPServiceSignKey @"sign" /// 服务器返回的三个固定字段 /// 状态码key #define RQHTTPServiceResponseCodeKey @"code" /// 消息key #define RQHTTPServiceResponseMsgKey @"msg" /// 数据data #define RQHTTPServiceResponseDataKey @"data" /// 数据body #define RQHTTPServiceResponseBodyKey @"body" /// 数据other #define RQHTTPServiceResponseOtherKey @"other" /// 数据data{"list":[]} #define RQHTTPServiceResponseDataListKey @"rows" /// 数据total #define RQHTTPServiceResponseDataTotalKey @"total" #endif /* RQHTTPServiceConstant_h */