新增adjust及帐单更改
This commit is contained in:
@@ -210,6 +210,12 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
+(void)requestMasterDisableRrEnablememberExchangeRights:(HttpRequestHelperCompletion)completion status:(NSString *)status targetUid:(NSString *)targetUid;
|
||||
///获取加入房间
|
||||
+(void)applyHallBtnStateWithHallId:(HttpRequestHelperCompletion)completion hallId:(NSString *)hallId;
|
||||
/// 获取公会收入列表
|
||||
/// @param completion 完成
|
||||
/// @param hallId 公会id
|
||||
/// @param startTime 查询开始时间,时间格式为yy-mm-dd
|
||||
/// @param endTime 查询开始时间, 时间格式为yy-mm-dd
|
||||
+(void)getGuildIncomeTotalList:(HttpRequestHelperCompletion)completion hallId:(NSString *)hallId startTime:(NSString *)startTime endTime:(NSString *)endTime;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
@@ -266,4 +266,12 @@
|
||||
+(void)applyHallBtnStateWithHallId:(HttpRequestHelperCompletion)completion hallId:(NSString *)hallId{
|
||||
[self makeRequest:@"hall/getApplyBtnStatus" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__,hallId,nil];
|
||||
}
|
||||
/// 获取公会收入列表
|
||||
/// @param completion 完成
|
||||
/// @param hallId 公会id
|
||||
/// @param startTime 查询开始时间,时间格式为yy-mm-dd
|
||||
/// @param endTime 查询开始时间, 时间格式为yy-mm-dd
|
||||
+(void)getGuildIncomeTotalList:(HttpRequestHelperCompletion)completion hallId:(NSString *)hallId startTime:(NSString *)startTime endTime:(NSString *)endTime{
|
||||
[self makeRequest:@"income/totalList" method:HttpRequestHelperMethodGET completion:completion, __FUNCTION__, hallId, startTime,endTime, nil];
|
||||
}
|
||||
@end
|
||||
|
Reference in New Issue
Block a user