新增adjust及帐单更改

This commit is contained in:
liyuhua
2023-08-08 11:26:07 +08:00
parent 25fe36f693
commit 1048cd66c9
60 changed files with 2109 additions and 100 deletions

View File

@@ -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

View File

@@ -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