opple_objc_json_client.m 16.5 KB
Newer Older
1 2 3 4 5 6 7

#import "opple_objc_json_client.h"

@implementation PageRows
@synthesize page;
@synthesize rows;
@synthesize total;
8
@synthesize totalpages;
曹云霄's avatar
曹云霄 committed
9 10 11

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
12
    return YES;
曹云霄's avatar
曹云霄 committed
13 14 15
}


16 17 18 19 20 21
@end

@implementation RsResponse
@synthesize code;
@synthesize message;
@synthesize data;
曹云霄's avatar
曹云霄 committed
22 23 24

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
25
    return YES;
曹云霄's avatar
曹云霄 committed
26 27 28
}


29 30 31 32 33
@end

@implementation LoginInfo
@synthesize username;
@synthesize password;
曹云霄's avatar
曹云霄 committed
34 35 36

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
37
    return YES;
曹云霄's avatar
曹云霄 committed
38 39 40
}


41 42 43 44 45
@end

@implementation ModifyPasswordRequest
@synthesize employeeId;
@synthesize oldPassword;
曹云霄's avatar
曹云霄 committed
46 47 48 49
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
50
    return YES;
曹云霄's avatar
曹云霄 committed
51 52 53 54 55
}


+(JSONKeyMapper*)keyMapper
{
56 57 58
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newPassword": @"fnewPassword",
                                                       }];
曹云霄's avatar
曹云霄 committed
59 60 61
}


62 63
@end

勾芒's avatar
勾芒 committed
64 65
@implementation RsEmployeeRequest
@synthesize employee;
曹云霄's avatar
曹云霄 committed
66 67 68

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
69
    return YES;
70
}
曹云霄's avatar
曹云霄 committed
71 72


73 74
@end

勾芒's avatar
勾芒 committed
75 76 77 78
@implementation GoodsCategory
@synthesize fid;
@synthesize name;
@synthesize children;
79 80

+(BOOL)propertyIsOptional:(NSString*)propertyName
曹云霄's avatar
曹云霄 committed
81
{
82
    return YES;
曹云霄's avatar
曹云霄 committed
83 84 85
}


勾芒's avatar
勾芒 committed
86 87 88 89 90 91 92 93
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


94 95 96 97 98 99 100 101
@end

@implementation GoodsFilter
@synthesize styles;
@synthesize categories;
@synthesize space;
@synthesize material;
@synthesize price;
曹云霄's avatar
曹云霄 committed
102 103 104

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


109 110
@end

勾芒's avatar
勾芒 committed
111 112
@implementation HotFilter
@synthesize list;
曹云霄's avatar
曹云霄 committed
113 114 115

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
116
    return YES;
117
}
曹云霄's avatar
曹云霄 committed
118 119


120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
@end

@implementation OrderFilter
@synthesize resellerCodeEquals;
@synthesize orderStateEquals;
@synthesize consumerNameOrMobileEquals;
@synthesize consumerIdEquals;
@synthesize dp;

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


135 136
@end

勾芒's avatar
勾芒 committed
137 138 139 140 141 142 143 144
@implementation OrderPayRequest
@synthesize orderNumber;
@synthesize oldstate;
@synthesize fnewstate;
@synthesize payType;
@synthesize isbill;
@synthesize billType;
@synthesize billTitle;
曹云霄's avatar
曹云霄 committed
145 146 147

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
148 149 150 151
    return YES;
}


勾芒's avatar
勾芒 committed
152 153 154 155 156 157 158 159
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newstate": @"fnewstate",
                                                       }];
}


160 161
@end

162 163 164
@implementation SceneFilter
@synthesize styles;
@synthesize space;
165 166 167 168

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


172 173
@end

174 175
@implementation RsShippingAddrEntity
@synthesize list;
勾芒's avatar
勾芒 committed
176 177 178 179 180 181 182 183 184

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


@end

185 186 187 188
@implementation SaveShoppingCartRequest
@synthesize consumerId;
@synthesize goodsId;
@synthesize count;
勾芒's avatar
勾芒 committed
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

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


@end

@implementation ShopCartFilter
@synthesize consumerId;
@synthesize dp;

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


@end

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
@implementation TOConsumerEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize name;
@synthesize mobile;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
@synthesize picture;
@synthesize lastVisitedTime;
@synthesize company;
225 226 227 228 229 230 231

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


232 233 234 235 236 237 238 239
+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


240 241
@end

242
@implementation VOResellerGoodsEntity
曹云霄's avatar
曹云霄 committed
243
@synthesize fid;
244
@synthesize createDate;
勾芒's avatar
勾芒 committed
245 246 247
@synthesize onlineTime;
@synthesize company;
@synthesize code;
248
@synthesize name;
勾芒's avatar
勾芒 committed
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
@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;
277 278 279
@synthesize resellerId;
@synthesize categoryName;
@synthesize brandName;
曹云霄's avatar
曹云霄 committed
280 281 282

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
283 284 285 286 287 288 289 290 291 292 293 294 295 296
    return YES;
}


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


@end

297 298
@implementation TOGoodsCategoryEntity
@synthesize upperName;
299 300 301
@synthesize fid;
@synthesize code;
@synthesize name;
302 303
@synthesize upperId;
@synthesize level;
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320

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


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


@end

321
@implementation TOGoodsLabelCategoryEntity
322 323 324
@synthesize fid;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
325
@synthesize code;
326 327 328 329 330
@synthesize name;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
曹云霄's avatar
曹云霄 committed
331 332 333 334 335
}


+(JSONKeyMapper*)keyMapper
{
336 337 338
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
339 340 341
}


342 343
@end

344
@implementation TOOrderdetailEntity
曹云霄's avatar
曹云霄 committed
345
@synthesize fid;
346 347 348 349 350 351
@synthesize goodsId;
@synthesize goodsCode;
@synthesize goodsName;
@synthesize goodsCover;
@synthesize goodsSpec;
@synthesize goodsBrand;
352
@synthesize goodsNum;
353 354 355 356 357
@synthesize goodsPrice;
@synthesize goodsTotalPrice;
@synthesize orderId;
@synthesize goodsUnit;
@synthesize remark;
曹云霄's avatar
曹云霄 committed
358 359 360

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
361
    return YES;
曹云霄's avatar
曹云霄 committed
362 363 364 365 366
}


+(JSONKeyMapper*)keyMapper
{
367 368 369
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
370 371 372
}


373 374
@end

375
@implementation TOSceneEntity
曹云霄's avatar
曹云霄 committed
376
@synthesize fid;
377
@synthesize sceneCode;
378
@synthesize name;
379 380 381 382
@synthesize pricure;
@synthesize category;
@synthesize style;
@synthesize space;
曹云霄's avatar
曹云霄 committed
383 384 385

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
386
    return YES;
曹云霄's avatar
曹云霄 committed
387 388 389 390 391
}


+(JSONKeyMapper*)keyMapper
{
392 393 394 395 396 397 398 399
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

400 401
@implementation TOShopcartEntity
@synthesize goods;
402
@synthesize fid;
403 404
@synthesize createName;
@synthesize createBy;
405
@synthesize createDate;
406 407 408 409 410
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize goodsId;
@synthesize goodsNum;
411
@synthesize consumerId;
412 413
@synthesize resellerId;
@synthesize costPrice;
414 415 416 417 418 419 420 421 422 423 424 425

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


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
426 427 428
}


429 430
@end

431
@implementation IdEntity
曹云霄's avatar
曹云霄 committed
432 433 434 435
@synthesize fid;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
436
    return YES;
曹云霄's avatar
曹云霄 committed
437 438 439 440 441
}


+(JSONKeyMapper*)keyMapper
{
442 443 444
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
445 446 447
}


448 449
@end

450 451 452
NSString * const SORTDIRECTION_ASC = @"asc";
NSString * const SORTDIRECTION_DESC = @"desc";

453 454

@implementation TOShippingAddrEntity
455
@synthesize fid;
456 457 458 459 460 461 462 463 464
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize name;
@synthesize miblephone;
@synthesize province;
@synthesize city;
@synthesize country;
@synthesize address;
@synthesize consumerId;
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479

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


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


480 481
@end

482
@implementation TOPositionEntity
曹云霄's avatar
曹云霄 committed
483
@synthesize fid;
484
@synthesize code;
485
@synthesize name;
486
@synthesize commission;
487
@synthesize lowestDiscount;
488
@synthesize resellerCode;
曹云霄's avatar
曹云霄 committed
489 490 491

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
492
    return YES;
曹云霄's avatar
曹云霄 committed
493 494 495 496 497
}


+(JSONKeyMapper*)keyMapper
{
498 499 500
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
501 502 503
}


504 505
@end

506
@implementation TOOrderEntity
曹云霄's avatar
曹云霄 committed
507
@synthesize fid;
508 509 510 511 512 513 514 515 516 517 518 519
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize orderNumber;
@synthesize orderTime;
@synthesize guideId;
@synthesize orderState;
@synthesize consumerId;
520
@synthesize goodsNum;
521 522 523 524 525 526 527 528 529 530 531
@synthesize orderPrice;
@synthesize receiverName;
@synthesize receiverMobile;
@synthesize receiverAddress;
@synthesize isBill;
@synthesize billType;
@synthesize billTitle;
@synthesize payType;
@synthesize consumerName;
@synthesize guideName;
@synthesize resellerName;
曹云霄's avatar
曹云霄 committed
532 533 534

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


+(JSONKeyMapper*)keyMapper
{
541 542 543 544 545 546 547 548
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

549 550
@implementation TOGoodsLabelEntity
@synthesize category;
曹云霄's avatar
曹云霄 committed
551
@synthesize fid;
552 553
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
勾芒's avatar
勾芒 committed
554
@synthesize name;
555
@synthesize categoryId;
曹云霄's avatar
曹云霄 committed
556 557 558

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
559
    return YES;
曹云霄's avatar
曹云霄 committed
560 561 562 563 564
}


+(JSONKeyMapper*)keyMapper
{
565 566 567 568 569 570 571 572
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
}


@end

573
@implementation TOGoodsBrandEntity
574
@synthesize fid;
575 576 577 578 579
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
580
@synthesize code;
581
@synthesize name;
582 583 584
@synthesize state;
@synthesize logo;
@synthesize fdescription;
585 586 587 588 589 590 591 592 593 594

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


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
595
                                                       @"description": @"fdescription",
596 597 598 599 600 601 602
                                                       @"id": @"fid",
                                                       }];
}


@end

603 604 605 606 607 608
@implementation TOGoodsEntity
@synthesize resellerInv;
@synthesize resellerTagPrice;
@synthesize resellerState;
@synthesize categoryName;
@synthesize brandName;
609
@synthesize fid;
勾芒's avatar
勾芒 committed
610
@synthesize createDate;
611 612
@synthesize onlineTime;
@synthesize company;
613 614
@synthesize code;
@synthesize name;
615 616 617 618 619 620 621
@synthesize number;
@synthesize categoryId;
@synthesize brandId;
@synthesize keyword;
@synthesize guidePrice;
@synthesize tagPrice;
@synthesize costPrice;
勾芒's avatar
勾芒 committed
622
@synthesize state;
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
@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;
643 644 645 646 647 648 649 650 651 652 653 654

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


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
曹云霄's avatar
曹云霄 committed
655 656 657
}


658 659
@end

660 661 662
@implementation RsShareResponse
@synthesize shareId;
@synthesize url;
曹云霄's avatar
曹云霄 committed
663 664 665

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
666
    return YES;
曹云霄's avatar
曹云霄 committed
667 668 669
}


勾芒's avatar
勾芒 committed
670 671
@end

672 673
@implementation DeleteCartRequest
@synthesize cartIds;
勾芒's avatar
勾芒 committed
674 675 676 677 678 679 680 681 682

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


@end

683 684 685 686
@implementation SceneCondition
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize page;
勾芒's avatar
勾芒 committed
687 688 689 690 691 692 693

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


694 695
@end

勾芒's avatar
勾芒 committed
696 697 698 699 700 701
@implementation OrderBill
@synthesize datapage;
@synthesize order;
@synthesize orderdetailList;
@synthesize consumer;
@synthesize employee;
曹云霄's avatar
曹云霄 committed
702 703 704

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
705 706 707 708 709 710
    return YES;
}


@end

勾芒's avatar
勾芒 committed
711 712 713 714 715 716 717 718 719
@implementation GoodsCondition
@synthesize nameLike;
@synthesize categoryEquals;
@synthesize styleEquals;
@synthesize spaceEquals;
@synthesize materialEqueals;
@synthesize startprice;
@synthesize endprice;
@synthesize page;
720 721 722 723 724 725 726

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


勾芒's avatar
勾芒 committed
727 728 729 730 731 732 733
@end

@implementation DataDict
@synthesize typename;
@synthesize typecode;

+(BOOL)propertyIsOptional:(NSString*)propertyName
734
{
勾芒's avatar
勾芒 committed
735
    return YES;
曹云霄's avatar
曹云霄 committed
736 737 738
}


739 740 741 742
@end

@implementation ResetPasswordRequest
@synthesize username;
743
@synthesize smsCode;
曹云霄's avatar
曹云霄 committed
744 745 746 747
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
748
    return YES;
曹云霄's avatar
曹云霄 committed
749 750 751 752 753
}


+(JSONKeyMapper*)keyMapper
{
754 755 756
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newPassword": @"fnewPassword",
                                                       }];
曹云霄's avatar
曹云霄 committed
757 758 759
}


760 761 762 763
@end

@implementation LoginResult
@synthesize employee;
764 765 766
@synthesize commissionRate;
@synthesize commissionTotal;
@synthesize lowestDiscount;
曹云霄's avatar
曹云霄 committed
767 768 769

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
770
    return YES;
曹云霄's avatar
曹云霄 committed
771 772 773
}


774 775 776
@end

@implementation ConsumerQueryCondition
勾芒's avatar
勾芒 committed
777
@synthesize resellerCodeEquals;
778 779
@synthesize nameEquals;
@synthesize mobileEquals;
勾芒's avatar
勾芒 committed
780 781
@synthesize createTimeBegin;
@synthesize createTimeEnd;
782
@synthesize page;
曹云霄's avatar
曹云霄 committed
783 784 785

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
786
    return YES;
曹云霄's avatar
曹云霄 committed
787 788 789
}


790 791 792 793 794
@end

@implementation ExceptionCode
@synthesize code;
@synthesize message;
曹云霄's avatar
曹云霄 committed
795 796 797

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
798
    return YES;
曹云霄's avatar
曹云霄 committed
799 800 801
}


802 803 804 805 806 807 808 809
@end

@implementation DataPage
@synthesize total;
@synthesize page;
@synthesize rows;
@synthesize sort;
@synthesize order;
曹云霄's avatar
曹云霄 committed
810 811 812

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
813
    return YES;
曹云霄's avatar
曹云霄 committed
814 815 816
}


817 818 819 820 821 822 823 824 825 826 827 828 829 830
@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;
曹云霄's avatar
曹云霄 committed
831 832 833

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
834
    return YES;
835
}
曹云霄's avatar
曹云霄 committed
836 837


838 839 840 841 842
@end

@implementation TSDepart
@synthesize TSPDepart;
@synthesize departname;
曹云霄's avatar
曹云霄 committed
843
@synthesize fdescription;
844 845 846 847 848 849
@synthesize TSDeparts;
@synthesize orgCode;
@synthesize orgType;
@synthesize mobile;
@synthesize fax;
@synthesize address;
曹云霄's avatar
曹云霄 committed
850 851 852

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
853
    return YES;
曹云霄's avatar
曹云霄 committed
854 855 856 857 858
}


+(JSONKeyMapper*)keyMapper
{
859 860 861 862 863 864
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"description": @"fdescription",
                                                       }];
}


勾芒's avatar
勾芒 committed
865 866
@end

867 868 869
@implementation TSUserOrg
@synthesize tsUser;
@synthesize tsDepart;
勾芒's avatar
勾芒 committed
870 871 872 873 874 875 876

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


877 878
@end

879 880
@implementation ShopCartResponse
@synthesize shopcart;
881 882 883 884 885 886 887 888 889

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


@end

勾芒's avatar
勾芒 committed
890 891
@implementation SceneResponse
@synthesize list;
892 893 894 895

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
896
}
曹云霄's avatar
曹云霄 committed
897 898


899 900 901 902
@end

@implementation OrderResponse
@synthesize orderBillList;
曹云霄's avatar
曹云霄 committed
903 904 905

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
906
    return YES;
907
}
曹云霄's avatar
曹云霄 committed
908 909


910 911 912
@end

@implementation GoodsResponse
曹云霄's avatar
曹云霄 committed
913 914 915 916
@synthesize goodsEntity;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
917
    return YES;
918
}
曹云霄's avatar
曹云霄 committed
919 920


921 922 923 924
@end

@implementation ConsumerPageResult
@synthesize results;
曹云霄's avatar
曹云霄 committed
925 926 927

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
928
    return YES;
929
}
曹云霄's avatar
曹云霄 committed
930 931


932 933 934 935 936 937 938 939 940 941 942 943 944
@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
945
@synthesize position;
曹云霄's avatar
曹云霄 committed
946 947 948

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
949
    return YES;
曹云霄's avatar
曹云霄 committed
950 951 952
}


953 954 955 956
@end

@implementation TOEmployee
@synthesize positions;
勾芒's avatar
勾芒 committed
957
@synthesize picture;
958
@synthesize positionsName;
曹云霄's avatar
曹云霄 committed
959 960 961

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
962
    return YES;
曹云霄's avatar
曹云霄 committed
963 964 965
}


966 967
@end