opple_objc_json_client.m 28.7 KB
Newer Older
1 2 3

#import "opple_objc_json_client.h"

曹云霄's avatar
曹云霄 committed
4 5 6 7 8
@implementation EarningsResponse
@synthesize accountTotal;
@synthesize yesterdayEarnings;
@synthesize historyEarning;
@synthesize applytotal;
曹云霄's avatar
曹云霄 committed
9 10 11 12 13 14 15 16 17

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
18 19
@implementation RsApplyBillRequest
@synthesize employeeId;
曹云霄's avatar
曹云霄 committed
20 21 22 23 24 25 26 27 28 29
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
30 31
@implementation RsCommissionRequest
@synthesize emploreeId;
曹云霄's avatar
曹云霄 committed
32 33 34 35 36 37 38 39 40 41
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
42 43 44
@implementation ExceptionCode
@synthesize code;
@synthesize message;
曹云霄's avatar
曹云霄 committed
45 46 47

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
48
    return YES;
曹云霄's avatar
曹云霄 committed
49 50 51
}


52 53 54 55 56 57
@end

@implementation RsResponse
@synthesize code;
@synthesize message;
@synthesize data;
曹云霄's avatar
曹云霄 committed
58 59 60

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
61
    return YES;
曹云霄's avatar
曹云霄 committed
62 63 64
}


曹云霄's avatar
曹云霄 committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
@end

@implementation ConsumerQueryCondition
@synthesize resellerCodeEquals;
@synthesize nameEquals;
@synthesize mobileEquals;
@synthesize createTimeBegin;
@synthesize createTimeEnd;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


81 82 83 84 85
@end

@implementation LoginInfo
@synthesize username;
@synthesize password;
曹云霄's avatar
曹云霄 committed
86 87 88

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
89
    return YES;
曹云霄's avatar
曹云霄 committed
90 91 92
}


93 94 95 96 97
@end

@implementation ModifyPasswordRequest
@synthesize employeeId;
@synthesize oldPassword;
曹云霄's avatar
曹云霄 committed
98 99 100 101
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
102
    return YES;
曹云霄's avatar
曹云霄 committed
103 104 105 106 107
}


+(JSONKeyMapper*)keyMapper
{
108
    return [[JSONKeyMapper alloc] initWithDictionary:@{
109 110
                                                       @"newPassword": @"fnewPassword",
                                                       }];
曹云霄's avatar
曹云霄 committed
111 112 113
}


114 115
@end

勾芒's avatar
勾芒 committed
116 117
@implementation RsEmployeeRequest
@synthesize employee;
曹云霄's avatar
曹云霄 committed
118 119 120

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
121
    return YES;
122
}
曹云霄's avatar
曹云霄 committed
123 124


125 126
@end

勾芒's avatar
勾芒 committed
127 128 129 130
@implementation GoodsCategory
@synthesize fid;
@synthesize name;
@synthesize children;
131 132

+(BOOL)propertyIsOptional:(NSString*)propertyName
曹云霄's avatar
曹云霄 committed
133
{
134
    return YES;
曹云霄's avatar
曹云霄 committed
135 136 137
}


勾芒's avatar
勾芒 committed
138 139
+(JSONKeyMapper*)keyMapper
{
140
    return [[JSONKeyMapper alloc] initWithDictionary:@{
勾芒's avatar
勾芒 committed
141 142 143 144 145
                                                       @"id": @"fid",
                                                       }];
}


146 147 148 149 150 151 152 153
@end

@implementation GoodsFilter
@synthesize styles;
@synthesize categories;
@synthesize space;
@synthesize material;
@synthesize price;
曹云霄's avatar
曹云霄 committed
154 155 156

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
157
    return YES;
158
}
曹云霄's avatar
曹云霄 committed
159 160


161 162
@end

勾芒's avatar
勾芒 committed
163 164
@implementation HotFilter
@synthesize list;
曹云霄's avatar
曹云霄 committed
165 166 167

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
168
    return YES;
169
}
曹云霄's avatar
曹云霄 committed
170 171


172 173
@end

174 175 176 177 178 179 180 181 182 183 184
@implementation RsJingDongECardRequest
@synthesize guideIdEquals;
@synthesize stateEquals;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
185 186 187 188 189 190 191 192 193 194 195 196 197
@end

@implementation RsSimpleJingDongECardRequest
@synthesize guideIdEquals;
@synthesize stateEquals;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


198 199
@end

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
@implementation Draw
@synthesize fid;
@synthesize lotteryId;
@synthesize drawDate;
@synthesize winnerId;
@synthesize awardId;
@synthesize awardDescription;
@synthesize orderNumber;
@synthesize state;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

@implementation LotteryDrawResponse
@synthesize awards;
@synthesize descriptions;
@synthesize rule;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation RsLotteryRequest
@synthesize winnerIdEquals;
@synthesize lotteryIdEquals;
@synthesize orderNumberEquals;
@synthesize stateEquals;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation OrderFilter
@synthesize resellerCodeEquals;
@synthesize orderStateEquals;
@synthesize consumerNameOrMobileEquals;
@synthesize consumerIdEquals;
@synthesize dp;
260 261 262 263 264 265 266

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


267 268
@end

勾芒's avatar
勾芒 committed
269 270 271 272 273 274 275 276
@implementation OrderPayRequest
@synthesize orderNumber;
@synthesize oldstate;
@synthesize fnewstate;
@synthesize payType;
@synthesize isbill;
@synthesize billType;
@synthesize billTitle;
277
@synthesize realAmount;
278
@synthesize lotteryId;
279
@synthesize drawId;
280
@synthesize promotionGoods;
281
@synthesize jdCardDenomation;
曹云霄's avatar
曹云霄 committed
282
@synthesize promotionMoney;
283 284
@synthesize wxcardNumber;
@synthesize wxcardDenomation;
285 286 287 288 289
@synthesize deductionPrority;
@synthesize goodsPrority;
@synthesize JDEcardsPrority;
@synthesize drawPrority;
@synthesize lotteryPrority;
曹云霄's avatar
曹云霄 committed
290
@synthesize wxCardPrority;
曹云霄's avatar
曹云霄 committed
291 292 293

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
294 295 296 297
    return YES;
}


勾芒's avatar
勾芒 committed
298 299
+(JSONKeyMapper*)keyMapper
{
300
    return [[JSONKeyMapper alloc] initWithDictionary:@{
勾芒's avatar
勾芒 committed
301 302 303 304 305
                                                       @"newstate": @"fnewstate",
                                                       }];
}


306 307
@end

308 309 310 311 312 313 314 315 316 317 318 319 320
@implementation PrizeCondition
@synthesize codeLike;
@synthesize nameLike;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
321 322 323 324 325 326 327 328 329 330 331 332
@implementation RsPrizeBill
@synthesize bill;
@synthesize details;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
333 334
@implementation RsActionResult
@synthesize actions;
335 336 337 338 339 340 341

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


342 343
@end

344 345 346
@implementation SceneFilter
@synthesize styles;
@synthesize space;
347 348 349 350

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
曹云霄's avatar
曹云霄 committed
351 352 353
}


354 355
@end

曹云霄's avatar
曹云霄 committed
356 357 358 359 360
@implementation RsScoreDetails
@synthesize currentScore;
@synthesize quarterlyRanking;
@synthesize annualRanking;
@synthesize recoreds;
勾芒's avatar
勾芒 committed
361 362 363 364 365 366 367 368 369

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
370 371
@implementation DeleteCartRequest
@synthesize cartIds;
勾芒's avatar
勾芒 committed
372 373 374 375 376 377 378 379 380

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

381 382 383
@implementation ShopCartFilter
@synthesize consumerId;
@synthesize dp;
勾芒's avatar
勾芒 committed
384 385 386 387 388 389 390

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
391 392
@end

曹云霄's avatar
曹云霄 committed
393 394 395 396 397 398
@implementation StudyTaskCondition
@synthesize typeEquals;
@synthesize stateEquals;
@synthesize titleLike;
@synthesize employeeIdEquals;
@synthesize page;
曹云霄's avatar
曹云霄 committed
399 400 401 402 403 404 405 406 407

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
408
@implementation TOApplyBillEntity
曹云霄's avatar
曹云霄 committed
409 410
@synthesize fid;
@synthesize createName;
曹云霄's avatar
曹云霄 committed
411
@synthesize createBy;
曹云霄's avatar
曹云霄 committed
412
@synthesize createDate;
413 414 415
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
曹云霄's avatar
曹云霄 committed
416 417 418 419 420 421 422 423
@synthesize sysOrgCode;
@synthesize billNumber;
@synthesize guideId;
@synthesize guideName;
@synthesize applyMoney;
@synthesize beforeMoney;
@synthesize afterMoney;
@synthesize billStates;
曹云霄's avatar
曹云霄 committed
424 425 426 427 428 429 430 431 432

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
433
    return [[JSONKeyMapper alloc] initWithDictionary:@{
曹云霄's avatar
曹云霄 committed
434 435 436 437 438
                                                       @"id": @"fid",
                                                       }];
}


勾芒's avatar
勾芒 committed
439 440
@end

曹云霄's avatar
曹云霄 committed
441
@implementation TOConsumerEntity
442
@synthesize fid;
曹云霄's avatar
曹云霄 committed
443 444
@synthesize createName;
@synthesize createBy;
445
@synthesize createDate;
曹云霄's avatar
曹云霄 committed
446
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
447
@synthesize name;
曹云霄's avatar
曹云霄 committed
448 449 450 451 452 453 454 455
@synthesize mobile;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
@synthesize picture;
@synthesize lastVisitedTime;
@synthesize company;
456 457 458 459 460 461 462

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


463 464
+(JSONKeyMapper*)keyMapper
{
465
    return [[JSONKeyMapper alloc] initWithDictionary:@{
466 467 468 469 470
                                                       @"id": @"fid",
                                                       }];
}


471 472
@end

曹云霄's avatar
曹云霄 committed
473
@implementation TOGoodsForResellerEntity
曹云霄's avatar
曹云霄 committed
474
@synthesize fid;
475
@synthesize resellerId;
曹云霄's avatar
曹云霄 committed
476 477
@synthesize goods;
@synthesize path;
曹云霄's avatar
曹云霄 committed
478 479 480

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
481 482 483 484 485 486
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
487
    return [[JSONKeyMapper alloc] initWithDictionary:@{
488 489 490 491 492 493 494
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
495
@implementation TOGoodsBrandEntity
496
@synthesize fid;
曹云霄's avatar
曹云霄 committed
497 498 499 500 501
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
502 503
@synthesize code;
@synthesize name;
曹云霄's avatar
曹云霄 committed
504 505 506
@synthesize state;
@synthesize logo;
@synthesize fdescription;
507 508 509 510 511 512 513 514 515

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
516
    return [[JSONKeyMapper alloc] initWithDictionary:@{
曹云霄's avatar
曹云霄 committed
517
                                                       @"description": @"fdescription",
518 519 520 521 522 523 524
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
525 526
@implementation TOGoodsLabelEntity
@synthesize category;
527 528 529 530
@synthesize fid;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize name;
曹云霄's avatar
曹云霄 committed
531
@synthesize categoryId;
532 533 534 535

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
曹云霄's avatar
曹云霄 committed
536 537 538 539 540
}


+(JSONKeyMapper*)keyMapper
{
541
    return [[JSONKeyMapper alloc] initWithDictionary:@{
542 543
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
544 545 546
}


547 548
@end

曹云霄's avatar
曹云霄 committed
549
@implementation TOJingdongEcardEntity
曹云霄's avatar
曹云霄 committed
550
@synthesize fid;
曹云霄's avatar
曹云霄 committed
551 552 553 554 555 556 557
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
558 559 560 561 562 563 564
@synthesize cardNumber;
@synthesize cardPassword;
@synthesize denomation;
@synthesize state;
@synthesize guideId;
@synthesize orderNumber;
@synthesize orderReceiptUrl;
曹云霄's avatar
曹云霄 committed
565 566 567

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
568
    return YES;
曹云霄's avatar
曹云霄 committed
569 570 571 572 573
}


+(JSONKeyMapper*)keyMapper
{
574
    return [[JSONKeyMapper alloc] initWithDictionary:@{
575 576
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
577 578 579
}


曹云霄's avatar
曹云霄 committed
580 581
@end

曹云霄's avatar
曹云霄 committed
582
@implementation TODrawEntity
曹云霄's avatar
曹云霄 committed
583 584 585 586 587 588 589 590
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
591 592 593 594
@synthesize drawDate;
@synthesize winnerId;
@synthesize awardId;
@synthesize awardDescription;
曹云霄's avatar
曹云霄 committed
595
@synthesize orderNumber;
曹云霄's avatar
曹云霄 committed
596 597
@synthesize state;
@synthesize lotteryId;
曹云霄's avatar
曹云霄 committed
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


613 614
@end

曹云霄's avatar
曹云霄 committed
615 616
@implementation TOOrderdetailEntity
@synthesize brandName;
曹云霄's avatar
曹云霄 committed
617
@synthesize fid;
618 619 620
@synthesize goodsId;
@synthesize goodsCode;
@synthesize goodsName;
曹云霄's avatar
曹云霄 committed
621 622 623 624 625 626 627 628 629
@synthesize goodsCover;
@synthesize goodsSpec;
@synthesize goodsBrand;
@synthesize goodsNum;
@synthesize goodsPrice;
@synthesize goodsTotalPrice;
@synthesize orderId;
@synthesize goodsUnit;
@synthesize remark;
曹云霄's avatar
曹云霄 committed
630 631 632 633 634 635 636 637 638

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
639
    return [[JSONKeyMapper alloc] initWithDictionary:@{
曹云霄's avatar
曹云霄 committed
640 641 642 643 644
                                                       @"id": @"fid",
                                                       }];
}


645 646
@end

曹云霄's avatar
曹云霄 committed
647
@implementation TOPositionEntity
648
@synthesize fid;
曹云霄's avatar
曹云霄 committed
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686
@synthesize code;
@synthesize name;
@synthesize commission;
@synthesize lowestDiscount;
@synthesize resellerCode;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

@implementation TOPrizeBillEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize billnumber;
@synthesize state;
@synthesize receiver;
@synthesize mobilephone;
@synthesize receiveAddress;
@synthesize employee;
@synthesize logisticsCompany;
@synthesize trackingNumber;
687 688 689 690 691 692 693 694 695 696 697 698 699 700 701

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


曹云霄's avatar
曹云霄 committed
702 703
@end

曹云霄's avatar
曹云霄 committed
704
@implementation TOPrizeEntity
曹云霄's avatar
曹云霄 committed
705
@synthesize fid;
曹云霄's avatar
曹云霄 committed
706 707 708 709 710 711 712 713 714
@synthesize picture;
@synthesize createName;
@synthesize createBy;
@synthesize updateName;
@synthesize updateBy;
@synthesize code;
@synthesize name;
@synthesize createDate;
@synthesize updateDate;
曹云霄's avatar
曹云霄 committed
715 716 717

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
718
    return YES;
曹云霄's avatar
曹云霄 committed
719 720 721 722 723
}


+(JSONKeyMapper*)keyMapper
{
724
    return [[JSONKeyMapper alloc] initWithDictionary:@{
725 726 727 728 729 730 731
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
732
@implementation TOScoreRecordEntity
733
@synthesize fid;
734
@synthesize createDate;
曹云霄's avatar
曹云霄 committed
735 736 737 738 739
@synthesize employeeId;
@synthesize score;
@synthesize sourceId;
@synthesize sourceType;
@synthesize sourceReason;
740 741 742 743 744 745 746 747 748

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
749
    return [[JSONKeyMapper alloc] initWithDictionary:@{
750 751
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
752 753 754
}


曹云霄's avatar
曹云霄 committed
755 756
@end

曹云霄's avatar
曹云霄 committed
757 758 759 760 761 762 763 764 765 766 767 768 769 770
@implementation TOShopcartEntity
@synthesize goods;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize goodsId;
@synthesize goodsNum;
@synthesize consumerId;
@synthesize resellerId;
@synthesize costPrice;
曹云霄's avatar
曹云霄 committed
771 772 773 774 775 776 777

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
778 779 780 781 782 783 784 785
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


786 787
@end

788
@implementation Action
789 790 791 792 793 794 795

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


796 797
@end

798
@implementation IdEntity
曹云霄's avatar
曹云霄 committed
799 800 801 802
@synthesize fid;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
803
    return YES;
曹云霄's avatar
曹云霄 committed
804 805 806 807 808
}


+(JSONKeyMapper*)keyMapper
{
809
    return [[JSONKeyMapper alloc] initWithDictionary:@{
810 811
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
812 813 814
}


815 816
@end

曹云霄's avatar
曹云霄 committed
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
NSString * const SORTDIRECTION_ASC = @"asc";
NSString * const SORTDIRECTION_DESC = @"desc";


@implementation UCN
@synthesize uuid;
@synthesize code;
@synthesize name;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation TOShippingAddrEntity
曹云霄's avatar
曹云霄 committed
835 836
@synthesize fid;
@synthesize createDate;
曹云霄's avatar
曹云霄 committed
837 838 839 840 841 842 843
@synthesize sysOrgCode;
@synthesize name;
@synthesize miblephone;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
曹云霄's avatar
曹云霄 committed
844
@synthesize consumerId;
845 846 847 848 849 850 851

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
852 853 854 855 856 857 858 859
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


860 861
@end

曹云霄's avatar
曹云霄 committed
862
@implementation TOSceneEntity
863
@synthesize fid;
曹云霄's avatar
曹云霄 committed
864
@synthesize sceneCode;
865
@synthesize name;
曹云霄's avatar
曹云霄 committed
866 867 868 869
@synthesize pricure;
@synthesize category;
@synthesize style;
@synthesize space;
870 871 872 873 874 875 876 877 878

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
879
    return [[JSONKeyMapper alloc] initWithDictionary:@{
880 881 882 883 884
                                                       @"id": @"fid",
                                                       }];
}


885 886
@end

曹云霄's avatar
曹云霄 committed
887 888 889
NSString * const TOPRIZEBILLENTITYSTATE_REQUESTED = @"requested";
NSString * const TOPRIZEBILLENTITYSTATE_SHIPPED = @"shipped";
NSString * const TOPRIZEBILLENTITYSTATE_DONE = @"done";
曹云霄's avatar
曹云霄 committed
890 891


曹云霄's avatar
曹云霄 committed
892
@implementation TOPrizeBillDetailsEntity
曹云霄's avatar
曹云霄 committed
893
@synthesize fid;
曹云霄's avatar
曹云霄 committed
894 895
@synthesize bill;
@synthesize prize;
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


911 912
@end

曹云霄's avatar
曹云霄 committed
913
@implementation TOOrderPromotionEntity
曹云霄's avatar
曹云霄 committed
914
@synthesize fid;
曹云霄's avatar
曹云霄 committed
915 916 917 918 919 920 921
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
922 923 924
@synthesize goodsId;
@synthesize goodsCode;
@synthesize goodsName;
曹云霄's avatar
曹云霄 committed
925 926 927 928 929 930 931 932 933 934 935 936
@synthesize promotionNumber;
@synthesize promotionMoney;
@synthesize orderNumber;
@synthesize discountRate;
@synthesize lotteryPackage;
@synthesize wxcardNumber;
@synthesize wxcardDenomation;
@synthesize wxcardRealDeduction;
@synthesize JDEcardDenomation;
@synthesize redPackageNumber;
@synthesize redPackageCount;
@synthesize prority;
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
954
@implementation TOOrderEntity
955 956 957 958 959 960 961 962 963
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize orderNumber;
曹云霄's avatar
曹云霄 committed
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
@synthesize orderTime;
@synthesize guideId;
@synthesize orderState;
@synthesize consumerId;
@synthesize goodsNum;
@synthesize orderPrice;
@synthesize receiverName;
@synthesize receiverMobile;
@synthesize receiverAddress;
@synthesize isBill;
@synthesize billType;
@synthesize billTitle;
@synthesize payType;
@synthesize consumerName;
@synthesize guideName;
@synthesize resellerName;
@synthesize oldPrice;
981

曹云霄's avatar
曹云霄 committed
982 983
+(BOOL)propertyIsOptional:(NSString*)propertyName
{
984
    return YES;
曹云霄's avatar
曹云霄 committed
985 986 987 988 989
}


+(JSONKeyMapper*)keyMapper
{
990
    return [[JSONKeyMapper alloc] initWithDictionary:@{
991 992
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
993 994 995
}


曹云霄's avatar
曹云霄 committed
996 997
@end

曹云霄's avatar
曹云霄 committed
998
@implementation TOAwardEntity
曹云霄's avatar
曹云霄 committed
999 1000 1001 1002 1003 1004 1005 1006
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
1007 1008 1009 1010 1011 1012
@synthesize remainTotal;
@synthesize drawRate;
@synthesize type;
@synthesize number;
@synthesize fdescription;
@synthesize lotteryId;
曹云霄's avatar
曹云霄 committed
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
曹云霄's avatar
曹云霄 committed
1023
                                                       @"description": @"fdescription",
曹云霄's avatar
曹云霄 committed
1024 1025 1026 1027 1028
                                                       @"id": @"fid",
                                                       }];
}


1029 1030
@end

曹云霄's avatar
曹云霄 committed
1031
@implementation TOGoodsLabelCategoryEntity
曹云霄's avatar
曹云霄 committed
1032
@synthesize fid;
1033
@synthesize sysOrgCode;
曹云霄's avatar
曹云霄 committed
1034
@synthesize sysCompanyCode;
曹云霄's avatar
曹云霄 committed
1035
@synthesize code;
曹云霄's avatar
曹云霄 committed
1036
@synthesize name;
曹云霄's avatar
曹云霄 committed
1037 1038 1039

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1040
    return YES;
曹云霄's avatar
曹云霄 committed
1041 1042 1043 1044 1045
}


+(JSONKeyMapper*)keyMapper
{
1046
    return [[JSONKeyMapper alloc] initWithDictionary:@{
1047 1048 1049 1050 1051 1052 1053
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
1054 1055
@implementation TOGoodsCategoryEntity
@synthesize upperName;
曹云霄's avatar
曹云霄 committed
1056
@synthesize fid;
曹云霄's avatar
曹云霄 committed
1057
@synthesize code;
勾芒's avatar
勾芒 committed
1058
@synthesize name;
曹云霄's avatar
曹云霄 committed
1059 1060
@synthesize upperId;
@synthesize level;
曹云霄's avatar
曹云霄 committed
1061 1062 1063

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1064
    return YES;
曹云霄's avatar
曹云霄 committed
1065 1066 1067 1068 1069
}


+(JSONKeyMapper*)keyMapper
{
1070
    return [[JSONKeyMapper alloc] initWithDictionary:@{
1071 1072 1073 1074 1075 1076 1077
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
1078
@implementation VOResellerGoodsEntity
1079
@synthesize fid;
曹云霄's avatar
曹云霄 committed
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
@synthesize createDate;
@synthesize onlineTime;
@synthesize company;
@synthesize code;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
曹云霄's avatar
曹云霄 committed
1113
@synthesize resellerId;
曹云霄's avatar
曹云霄 committed
1114 1115
@synthesize categoryName;
@synthesize brandName;
1116 1117 1118 1119 1120 1121 1122 1123 1124

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
1125
    return [[JSONKeyMapper alloc] initWithDictionary:@{
1126 1127 1128 1129 1130 1131 1132
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
1133 1134 1135 1136 1137 1138
@implementation TOGoodsEntity
@synthesize resellerInv;
@synthesize resellerTagPrice;
@synthesize resellerState;
@synthesize categoryName;
@synthesize brandName;
1139
@synthesize fid;
勾芒's avatar
勾芒 committed
1140
@synthesize createDate;
曹云霄's avatar
曹云霄 committed
1141
@synthesize onlineTime;
曹云霄's avatar
曹云霄 committed
1142
@synthesize company;
曹云霄's avatar
曹云霄 committed
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
@synthesize code;
@synthesize name;
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
@synthesize state;
@synthesize inv;
@synthesize detailedIntro;
@synthesize weight;
@synthesize unit;
@synthesize productProfile;
@synthesize power;
@synthesize colorTemperature;
@synthesize spec;
@synthesize function;
@synthesize material;
@synthesize lightSource;
@synthesize goodsStyle;
@synthesize series;
@synthesize area;
@synthesize size;
@synthesize space;
@synthesize installMethod;
@synthesize lightNumber;
@synthesize pictures;
@synthesize barcode;
@synthesize goodsResellerList;
曹云霄's avatar
曹云霄 committed
1174 1175 1176 1177 1178 1179 1180 1181 1182

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
1183
    return [[JSONKeyMapper alloc] initWithDictionary:@{
曹云霄's avatar
曹云霄 committed
1184 1185 1186 1187 1188 1189 1190
                                                       @"id": @"fid",
                                                       }];
}


@end

曹云霄's avatar
曹云霄 committed
1191
@implementation TOCommissionHistEntity
1192 1193 1194 1195 1196 1197
@synthesize fid;
@synthesize createName;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
曹云霄's avatar
曹云霄 committed
1198 1199 1200 1201 1202 1203 1204 1205 1206
@synthesize resellerCode;
@synthesize employeeId;
@synthesize orderId;
@synthesize amount;
@synthesize afteramount;
@synthesize remark;
@synthesize orderNumber;
@synthesize employeeName;
@synthesize state;
曹云霄's avatar
曹云霄 committed
1207 1208 1209

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1210
    return YES;
曹云霄's avatar
曹云霄 committed
1211 1212 1213
}


1214 1215 1216 1217 1218 1219 1220 1221
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


勾芒's avatar
勾芒 committed
1222 1223
@end

曹云霄's avatar
曹云霄 committed
1224 1225 1226
@implementation RsShareResponse
@synthesize shareId;
@synthesize url;
勾芒's avatar
勾芒 committed
1227 1228 1229 1230 1231 1232 1233 1234 1235

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
1236 1237 1238 1239
@implementation SaveShoppingCartRequest
@synthesize consumerId;
@synthesize goodsId;
@synthesize count;
勾芒's avatar
勾芒 committed
1240 1241 1242 1243 1244 1245 1246

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1247 1248
@end

曹云霄's avatar
曹云霄 committed
1249 1250
@implementation RsShippingAddrEntity
@synthesize list;
1251 1252 1253 1254 1255 1256 1257 1258 1259

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

曹云霄's avatar
曹云霄 committed
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
@implementation SceneCondition
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize page;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation RsPrizeBillResponse
@synthesize bills;
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation PromotionGoods
@synthesize goods;
@synthesize promotionNumber;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation OrderBill
@synthesize datapage;
@synthesize order;
@synthesize orderdetailList;
@synthesize consumer;
@synthesize employee;
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation GroupByOrderNumber
@synthesize orderNumber;
@synthesize orderTime;
@synthesize orderReceiptUrl;
1315
@synthesize eCards;
曹云霄's avatar
曹云霄 committed
1316 1317 1318

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1319 1320 1321 1322 1323 1324
    return YES;
}


@end

勾芒's avatar
勾芒 committed
1325 1326 1327 1328 1329 1330 1331 1332 1333
@implementation GoodsCondition
@synthesize nameLike;
@synthesize categoryEquals;
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize materialEqueals;
@synthesize startprice;
@synthesize endprice;
@synthesize page;
1334 1335 1336 1337 1338 1339 1340

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


勾芒's avatar
勾芒 committed
1341 1342 1343
@end

@implementation DataDict
1344
@synthesize typeName;
勾芒's avatar
勾芒 committed
1345 1346 1347
@synthesize typecode;

+(BOOL)propertyIsOptional:(NSString*)propertyName
1348
{
勾芒's avatar
勾芒 committed
1349
    return YES;
曹云霄's avatar
曹云霄 committed
1350 1351 1352
}


1353 1354 1355 1356
@end

@implementation ResetPasswordRequest
@synthesize username;
1357
@synthesize smsCode;
曹云霄's avatar
曹云霄 committed
1358 1359 1360 1361
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1362
    return YES;
曹云霄's avatar
曹云霄 committed
1363 1364 1365 1366 1367
}


+(JSONKeyMapper*)keyMapper
{
1368
    return [[JSONKeyMapper alloc] initWithDictionary:@{
1369 1370
                                                       @"newPassword": @"fnewPassword",
                                                       }];
曹云霄's avatar
曹云霄 committed
1371 1372 1373
}


1374 1375 1376 1377
@end

@implementation LoginResult
@synthesize employee;
1378 1379 1380
@synthesize commissionRate;
@synthesize commissionTotal;
@synthesize lowestDiscount;
曹云霄's avatar
曹云霄 committed
1381 1382 1383

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1384
    return YES;
曹云霄's avatar
曹云霄 committed
1385 1386 1387
}


1388 1389
@end

曹云霄's avatar
曹云霄 committed
1390 1391 1392
@implementation FunctionInfo
@synthesize userName;
@synthesize functionName;
曹云霄's avatar
曹云霄 committed
1393 1394 1395

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1396
    return YES;
曹云霄's avatar
曹云霄 committed
1397 1398 1399
}


1400 1401
@end

曹云霄's avatar
曹云霄 committed
1402 1403 1404 1405 1406
@implementation PageRows
@synthesize page;
@synthesize rows;
@synthesize total;
@synthesize totalpages;
曹云霄's avatar
曹云霄 committed
1407 1408 1409

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1410
    return YES;
曹云霄's avatar
曹云霄 committed
1411 1412 1413
}


1414 1415
@end

曹云霄's avatar
曹云霄 committed
1416 1417 1418 1419 1420 1421
@implementation DataPage
@synthesize total;
@synthesize page;
@synthesize rows;
@synthesize sort;
@synthesize order;
曹云霄's avatar
曹云霄 committed
1422 1423 1424

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1425
    return YES;
曹云霄's avatar
曹云霄 committed
1426 1427 1428
}


1429 1430
@end

曹云霄's avatar
曹云霄 committed
1431 1432 1433 1434 1435 1436 1437 1438 1439
@implementation ApplyRequest
@synthesize amount;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
@end

@implementation AfficheCondition
@synthesize page;
@synthesize userIdEquals;
@synthesize dayCountEquals;
@synthesize afficheTypeEuals;
@synthesize order;
@synthesize sort;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
1456 1457
@end

1458 1459 1460 1461 1462 1463 1464 1465 1466
@implementation RsJingDongECardResponse
@synthesize list;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
1467 1468
@end

曹云霄's avatar
曹云霄 committed
1469 1470 1471
@implementation RsAwardDraw
@synthesize draw;
@synthesize award;
曹云霄's avatar
曹云霄 committed
1472 1473 1474 1475 1476 1477 1478

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
@end

@implementation TSBaseUser
@synthesize departid;
@synthesize signature;
@synthesize browser;
@synthesize userKey;
@synthesize status;
@synthesize activitiSync;
@synthesize password;
@synthesize userName;
@synthesize realName;
@synthesize currentDepart;
@synthesize userOrgList;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1500 1501 1502 1503 1504
@end

@implementation TSDepart
@synthesize TSPDepart;
@synthesize departname;
曹云霄's avatar
曹云霄 committed
1505
@synthesize fdescription;
1506 1507 1508 1509 1510 1511
@synthesize TSDeparts;
@synthesize orgCode;
@synthesize orgType;
@synthesize mobile;
@synthesize fax;
@synthesize address;
曹云霄's avatar
曹云霄 committed
1512 1513 1514

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1515
    return YES;
曹云霄's avatar
曹云霄 committed
1516 1517 1518 1519 1520
}


+(JSONKeyMapper*)keyMapper
{
1521
    return [[JSONKeyMapper alloc] initWithDictionary:@{
1522 1523 1524 1525 1526
                                                       @"description": @"fdescription",
                                                       }];
}


曹云霄's avatar
曹云霄 committed
1527 1528
@end

曹云霄's avatar
曹云霄 committed
1529 1530 1531
@implementation TSUserOrg
@synthesize tsUser;
@synthesize tsDepart;
曹云霄's avatar
曹云霄 committed
1532 1533 1534 1535 1536 1537 1538

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1539 1540
@end

曹云霄's avatar
曹云霄 committed
1541 1542
@implementation RsLotteryResponse
@synthesize list;
1543 1544 1545 1546 1547 1548 1549

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


曹云霄's avatar
曹云霄 committed
1550 1551
@end

曹云霄's avatar
曹云霄 committed
1552 1553
@implementation PrizeResponse
@synthesize prizes;
曹云霄's avatar
曹云霄 committed
1554 1555 1556 1557 1558 1559 1560

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


勾芒's avatar
勾芒 committed
1561 1562
@end

1563 1564
@implementation ShopCartResponse
@synthesize shopcart;
勾芒's avatar
勾芒 committed
1565 1566 1567 1568 1569 1570 1571

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1572 1573
@end

1574 1575
@implementation SceneResponse
@synthesize list;
1576 1577 1578 1579 1580 1581 1582 1583 1584

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

1585 1586
@implementation OrderResponse
@synthesize orderBillList;
1587 1588 1589 1590

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
1591
}
曹云霄's avatar
曹云霄 committed
1592 1593


1594 1595
@end

曹云霄's avatar
曹云霄 committed
1596 1597
@implementation RsSimpleJingDongECardResponse
@synthesize list;
1598 1599 1600 1601 1602 1603 1604

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


1605 1606
@end

曹云霄's avatar
曹云霄 committed
1607 1608
@implementation GoodsResponse
@synthesize goodsEntity;
曹云霄's avatar
曹云霄 committed
1609 1610 1611

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1612
    return YES;
1613
}
曹云霄's avatar
曹云霄 committed
1614 1615


1616 1617
@end

曹云霄's avatar
曹云霄 committed
1618 1619
@implementation ConsumerPageResult
@synthesize results;
曹云霄's avatar
曹云霄 committed
1620 1621 1622

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1623
    return YES;
1624
}
曹云霄's avatar
曹云霄 committed
1625 1626


1627 1628
@end

曹云霄's avatar
曹云霄 committed
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
@implementation RsCommissionResponse
@synthesize list;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
}


@end

@implementation RsApplyBillResponse
@synthesize list;
曹云霄's avatar
曹云霄 committed
1642 1643 1644

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1645
    return YES;
1646
}
曹云霄's avatar
曹云霄 committed
1647 1648


1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
@end

@implementation TSUser
@synthesize signatureFile;
@synthesize mobilePhone;
@synthesize officePhone;
@synthesize email;
@synthesize createDate;
@synthesize createBy;
@synthesize createName;
@synthesize updateDate;
@synthesize updateBy;
@synthesize updateName;
勾芒's avatar
勾芒 committed
1662
@synthesize position;
曹云霄's avatar
曹云霄 committed
1663 1664 1665

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1666
    return YES;
曹云霄's avatar
曹云霄 committed
1667 1668 1669
}


1670 1671 1672 1673
@end

@implementation TOEmployee
@synthesize positions;
勾芒's avatar
勾芒 committed
1674
@synthesize picture;
1675
@synthesize positionsName;
曹云霄's avatar
曹云霄 committed
1676 1677 1678

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
1679
    return YES;
曹云霄's avatar
曹云霄 committed
1680 1681 1682
}


1683 1684
@end