CNLiveCommuntyHomeModel.m 25.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
//
//  CNLiveCommuntyHomeModel.m
//  CNLiveCommunitModule
//
//  Created by open on 2022/2/9.
//

#import "CNLiveCommuntyHomeModel.h"

@implementation CNLiveCommuntyHomeModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
+ (NSDictionary *)mj_objectClassInArray
{
    return @{@"contentColumnList":@"CNLiveCommuntySubHomeModel"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if ([property.name isEqualToString:@"contentColumnList"]) {
        NSArray * columList = (NSArray *)oldValue;
        self.titles = [[NSMutableArray alloc] init];
        for (NSDictionary * subDict in columList) {
            [self.titles addObject:[subDict stringValueForKey:@"columnName" default:@""]];
        }
    }
//#ifdef DEBUG
//    if ([property.name isEqualToString:@"cmsPageUrl"]) {
//        if (oldValue == nil || [oldValue isKindOfClass:NSNull.class]) {
//            oldValue = @"https://www.baidu.com";
//        }
//    }
//#else
//#endif
    return oldValue;
}
@end

@implementation CNLiveCommuntySubHomeModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
//#ifdef DEBUG
//    if ([property.name isEqualToString:@"cmsPageUrl"]) {
//        if (oldValue == nil || [oldValue isKindOfClass:NSNull.class]) {
//            oldValue = @"https://www.baidu.com";
//        }
//    }
//#else
//#endif
    return oldValue;
}
@end


@implementation CNLiveCommuntyHomeListModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}

@end


@implementation CNLiveCommuntyActivityHomeListModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id",@"desc":@"description"};
}

- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if ([property.name isEqualToString:@"publicityPic"]) {
        if ([oldValue cn_containsString:@","]) {
            self.imgUrl = [(NSString *)oldValue componentsSeparatedByString:@","].firstObject;
        }else{
            self.imgUrl = oldValue;
        }
    }
    if ([property.name isEqualToString:@"status"]) {
        NSString * s = [NSString stringWithFormat:@"%@",oldValue];
        if ([s isEqualToString:@"1"]) self.statusString = @"未开始";
        if ([s isEqualToString:@"2"]) self.statusString = @"进行中";
        if ([s isEqualToString:@"3"]) self.statusString = @"已结束";
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityRecordListModel
MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if ([property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if ([property.name isEqualToString:@"publicityPic"]) {
        if ([oldValue cn_containsString:@","]) {
            self.imgUrl = [(NSString *)oldValue componentsSeparatedByString:@","].firstObject;
        }else{
            self.imgUrl = oldValue;
        }
    }
    if ([property.name isEqualToString:@"amount"]) {
        oldValue = [NSString stringWithFormat:@"%@",oldValue];
        if ([oldValue isEqualToString:@"0"]) {
            oldValue = @"";
        }else{
            oldValue = [NSString stringWithFormat:@"%.2f",[oldValue floatValue]/100];
        }
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityRepairListModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if ([property.name isEqualToString:@"status"]) {
        NSString * s = [NSString stringWithFormat:@"%@",oldValue];
        if ([s isEqualToString:@"0"]) self.statusString = @"待受理";
        if ([s isEqualToString:@"1"]) self.statusString = @"处理中";
        if ([s isEqualToString:@"2"]) self.statusString = @"已失效";
        if ([s isEqualToString:@"3"]) self.statusString = @"已完成";
    }
    if ([property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityMaintainsListModel
MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if ([property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityMaintainsTimeModel


@end

@implementation CNLiveCommuntyActivityMaintainsCreateModel

MJCodingImplementation
- (instancetype)init
{
    self = [super init];
    if (self) {
        self.infoArray = [[NSMutableArray alloc] init];
        self.processArray = [[NSMutableArray alloc] init];
    }
    return self;
}
+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}
- (void)mj_didConvertToObjectWithKeyValues:(NSDictionary *)keyValues
{
    self.infoArray = [[NSMutableArray alloc] init];
    self.processArray = [[NSMutableArray alloc] initWithArray:@[@"",@"",@"",@""]];
    [keyValues enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
        key = [NSString stringWithFormat:@"%@",key];
        obj = [NSString stringWithFormat:@"%@",obj];
        NSMutableDictionary * tempDict = [[NSMutableDictionary alloc] init];
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"userName"]) {//联系人
            [tempDict addString:@"联 系 人" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"address"]) {//联系地址
            [tempDict addString:@"联系地址" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"phone"]) {//联系电话
            [tempDict addString:@"联系电话" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"repairName"]) {//选择项目
            [tempDict addString:@"选择项目" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"remark"]) {//问题描述
            [tempDict addString:@"问题描述" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"intentBeginTime"]) {//联系地址
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            [tempDict addString:@"预约时间" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [self.infoArray addObject:tempDict];
        }
        if (![obj isEqualToString:@"<null>"] && [obj isNotBlank] && [key isEqualToString:@"createTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
            [tempDict addString:@"用户提交报修订单" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [self.processArray replaceObjectAtIndex:0 withObject:tempDict];
        }
        if (![obj isEqualToString:@"<null>"] && [obj isNotBlank] && [key isEqualToString:@"repairTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
            [tempDict addString:@"维修人员已接单" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [self.processArray replaceObjectAtIndex:1 withObject:tempDict];
        }
        if (![obj isEqualToString:@"<null>"] && [obj isNotBlank] && [key isEqualToString:@"payTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
            [tempDict addString:@"完成维修并支付" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [self.processArray replaceObjectAtIndex:2 withObject:tempDict];
        }
        if (![obj isEqualToString:@"<null>"] && [obj isNotBlank] && [key isEqualToString:@"cancleTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
            [tempDict addString:@"用户取消报修订单" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [self.processArray replaceObjectAtIndex:3 withObject:tempDict];
        }
    }];
    [self.processArray removeObject:@""];
    for (NSDictionary * subDict in self.processArray) {
        NSString * key = [subDict stringValueForKey:@"key" default:@""];
        if ([key isEqualToString:@"用户提交报修订单"]) self.showType = 0;
        if ([key isEqualToString:@"维修人员已接单"]) self.showType = 1;
        if ([key isEqualToString:@"完成维修并支付"]) self.showType = 2;
        if ([key isEqualToString:@"用户取消报修订单"]) self.showType = 3;
    }
    self.processArray = [[NSMutableArray alloc] initWithArray:[[self.processArray reverseObjectEnumerator] allObjects]];
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    oldValue = [NSString stringWithFormat:@"%@",oldValue];
    
    if (![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"repairTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.repairTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"payTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.payTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"intentEndTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.intentEndTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"intentBeginTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.intentBeginTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"cancleTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.cancleTimeString = [dateFormatter stringFromDate:detaildate];
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityDetailModel

MJCodingImplementation

+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id",@"desc":@"description"};
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    oldValue = [NSString stringWithFormat:@"%@",oldValue];
    
    if (![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"endTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.endTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"startTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.startTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isEqualToString:@"<null>"] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"updateTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.updateTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if (![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"signupEndTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.signupEndTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if ([oldValue isNotBlank] && [property.name isEqualToString:@"unitPrice"]) {
        oldValue = [NSString stringWithFormat:@"%.2f",[oldValue floatValue]/100];
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivitySignUpOrderModel

MJCodingImplementation
+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id"};
}

- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    oldValue = [NSString stringWithFormat:@"%@",oldValue];
    if ([oldValue isNotBlank] && [property.name isEqualToString:@"createTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.createTimeString = [dateFormatter stringFromDate:detaildate];
    }
    if ([oldValue isNotBlank] && [property.name isEqualToString:@"updateTime"]) {
        NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
        NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
        [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
        self.updateTimeString = [dateFormatter stringFromDate:detaildate];
    }
    return oldValue;
}
@end

@implementation CNLiveCommuntyActivitySignUpModel
MJCodingImplementation

- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if (oldValue != nil && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"signs"]) {
        __block NSArray * array = (NSArray *)oldValue;
        __block NSMutableString * signsMString = [[NSMutableString alloc] init];
        [array enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
            [signsMString appendFormat:@"%@",obj];
            if (array.count != idx + 1) [signsMString appendString:@","];
        }];
        [signsMString substringToIndex:signsMString.length - 1];
        self.signsString = signsMString;
    }
    return oldValue;
}

@end

@implementation CNLiveCommuntyActivityUserDetailModel

MJCodingImplementation

@end

@implementation CNLiveCommuntyActivityResultDetailModel

MJCodingImplementation
+ (NSDictionary *)mj_replacedKeyFromPropertyName
{
    return @{@"idStr":@"id",@"desc":@"description"};
}
+ (NSDictionary *)mj_objectClassInArray
{
    return @{@"signupVoList":@"CNLiveCommuntyActivityUserDetailModel"};
}
- (void)mj_didConvertToObjectWithKeyValues:(NSDictionary *)keyValues
{
    self.dataArray = [[NSMutableArray alloc] init];
    NSMutableArray * tempArray = [[NSMutableArray alloc] init];
    [keyValues enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
        key = [NSString stringWithFormat:@"%@",key];
        obj = [NSString stringWithFormat:@"%@",obj];
        NSMutableDictionary * tempDict = [[NSMutableDictionary alloc] init];
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"location"]) {
            [tempDict addString:@"地      点" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [tempArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"startTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([obj doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy年MM月dd日 HH:mm"];
            [tempDict addString:@"时      间" forKey:@"key"];
            [tempDict addString:[dateFormatter stringFromDate:detaildate] forKey:@"value"];
            [tempArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"personLimit"]) {
            [tempDict addString:@"人      数" forKey:@"key"];
            [tempDict addString:obj forKey:@"value"];
            [tempArray addObject:tempDict];
        }
        if (![obj isKindOfClass:NSNull.class] && [obj isNotBlank] && [key isEqualToString:@"duration"]) {
            [tempDict addString:@"活动时长" forKey:@"key"];
            [tempDict addString:[NSString stringWithFormat:@"%@小时左右",obj] forKey:@"value"];
            [tempArray addObject:tempDict];
        }
    }];
    
    NSMutableArray * tempArray01 = [[NSMutableArray alloc] init];
    NSArray * voList = [keyValues arrayForKey:@"signupVoList"];
    for (NSDictionary * dict in voList) {
        
        NSMutableDictionary * tempDict01 = [[NSMutableDictionary alloc] init];
        NSString * age = [NSString stringWithFormat:@"%@",dict[@"age"]];
        [tempDict01 addString:@"年      龄" forKey:@"key"];
        [tempDict01 addString:age forKey:@"value"];
        [tempArray01 addObject:tempDict01];
        
        NSMutableDictionary * tempDict02 = [[NSMutableDictionary alloc] init];
        NSString * name = [NSString stringWithFormat:@"%@",dict[@"name"]];
        [tempDict02 addString:@"姓      名" forKey:@"key"];
        [tempDict02 addString:name forKey:@"value"];
        [tempArray01 addObject:tempDict02];
        
        NSMutableDictionary * tempDict03 = [[NSMutableDictionary alloc] init];
        NSString * gender = [NSString stringWithFormat:@"%@",[dict[@"gender"] boolValue]?@"男":@"女"];
        [tempDict03 addString:@"性      别" forKey:@"key"];
        [tempDict03 addString:gender forKey:@"value"];
        [tempArray01 addObject:tempDict03];
        
        NSMutableDictionary * tempDict04 = [[NSMutableDictionary alloc] init];
        NSString * mobile = [NSString stringWithFormat:@"%@",dict[@"mobile"]];
        [tempDict04 addString:@"联系方式" forKey:@"key"];
        [tempDict04 addString:mobile forKey:@"value"];
        [tempArray01 addObject:tempDict04];
    }
    [self.dataArray addObject:tempArray01];
    [self.dataArray addObject:tempArray];
}
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property
{
    if (![property.name isEqualToString:@"signupVoList"]) {
        
        oldValue = [NSString stringWithFormat:@"%@",oldValue];
        if ([oldValue isEqualToString:@"<null>"] || [oldValue isEqualToString:@"(null)"]) oldValue = @"";
        
        if ([oldValue isNotBlank] && [property.name isEqualToString:@"signupEndTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.signupEndTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"signupStartTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.signupStartTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"endTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.endTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && ![oldValue isKindOfClass:NSNull.class] && [property.name isEqualToString:@"startTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.startTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && [property.name isEqualToString:@"createTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.createTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && [property.name isEqualToString:@"updateTime"]) {
            NSDate *detaildate = [NSDate dateWithTimeIntervalSince1970:([oldValue doubleValue]/1000)];
            NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
            [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm"];
            self.updateTimeString = [dateFormatter stringFromDate:detaildate];
        }
        if ([oldValue isNotBlank] && [property.name isEqualToString:@"unitPrice"]) {
            oldValue = [NSString stringWithFormat:@"%.2f",[oldValue floatValue]/100];
        }
    }
    
    return oldValue;
}
@end