Skip to content

Commit d11a93a

Browse files
author
erichmzhang
committed
修复Objective-C C++混编导致的问题
1 parent 61c14c1 commit d11a93a

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

QCloudCOSXML/Classes/auto-generation/QCloudLifecycleRuleFilter.m

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ @implementation QCloudLifecycleRuleFilter
3636

3737
+ (NSDictionary *)modelCustomPropertyMapper
3838
{
39-
return @{
40-
@"prefix" :@"Prefix",
41-
@"tag" :@"Tag",
42-
@"and" :@"And",
43-
};
39+
return @{
40+
@"prefix" :@"Prefix",
41+
@"tag" :@"Tag",
42+
@"ruleFilterAnd" :@"And",
43+
};
4444
}
4545

4646

4747
- (BOOL)modelCustomTransformToDictionary:(NSMutableDictionary *)dic
4848
{
49-
50-
49+
50+
5151
return YES;
5252
}
5353

@@ -57,11 +57,12 @@ - (NSDictionary *)modelCustomWillTransformFromDictionary:(NSDictionary *)dic
5757
return dic;
5858
}
5959
NSMutableDictionary* transfromDic = [NSMutableDictionary dictionaryWithDictionary:dic];
60-
60+
6161
return transfromDic;
6262
}
6363

6464
@end
6565

6666

6767
NS_ASSUME_NONNULL_END
68+

QCloudCOSXML/Classes/auto-generation/QCloudLifecycleRuleFilterAnd.m

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
2-
// QCloudLifecycleRuleFilter.m
3-
// QCloudLifecycleRuleFilter
2+
// QCloudLifecycleRuleFilterAnd.m
3+
// QCloudLifecycleRuleFilterAnd
44
//
55
// Created by tencent
66
// Copyright (c) 2015年 tencent. All rights reserved.
@@ -24,13 +24,13 @@
2424
//
2525

2626

27-
#import "QCloudLifecycleRuleFilter.h"
28-
2927
#import "QCloudLifecycleRuleFilterAnd.h"
3028

29+
#import "QCloudLifecycleTag.h"
30+
3131

3232
NS_ASSUME_NONNULL_BEGIN
33-
@implementation QCloudLifecycleRuleFilter
33+
@implementation QCloudLifecycleRuleFilterAnd
3434

3535

3636

@@ -39,7 +39,6 @@ + (NSDictionary *)modelCustomPropertyMapper
3939
return @{
4040
@"prefix" :@"Prefix",
4141
@"tag" :@"Tag",
42-
@"ruleFilterAnd" :@"And",
4342
};
4443
}
4544

@@ -65,4 +64,3 @@ - (NSDictionary *)modelCustomWillTransformFromDictionary:(NSDictionary *)dic
6564

6665

6766
NS_ASSUME_NONNULL_END
68-

0 commit comments

Comments
 (0)