
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
25 lines
539 B
Objective-C
25 lines
539 B
Objective-C
//
|
|
// ActivityInfoModel.m
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/14.
|
|
//
|
|
|
|
#import "ActivityInfoModel.h"
|
|
|
|
@implementation ActivityInfoModel
|
|
- (void)setRuleValue:(NSString *)ruleValue{
|
|
_ruleValue = ruleValue;
|
|
id data = [_ruleValue mj_JSONObject];
|
|
if([data isKindOfClass:[NSDictionary class]]){
|
|
NSDictionary *dic = (NSDictionary *)data;
|
|
if(dic[@"RESERVE"]!=nil){
|
|
_gameModel = [ActivityInfoItemModel modelWithJSON:dic[@"RESERVE"]];
|
|
}
|
|
}
|
|
}
|
|
@end
|
|
@implementation ActivityInfoItemModel
|
|
|
|
@end
|