car_objc_json_client.m 29.5 KB
Newer Older
1

Sandy's avatar
Sandy committed
2 3 4 5 6 7 8 9 10 11 12 13 14
#import "car_objc_json_client.h"

@implementation QueryOrder
@synthesize field;
@synthesize direction;

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


@end
15 16 17 18 19 20 21 22 23

@implementation QueryResultPaging
@synthesize page;
@synthesize pageSize;
@synthesize pageCount;
@synthesize recordCount;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
24
    return YES;
25 26 27 28 29
}


@end

Sandy's avatar
Sandy committed
30 31 32 33 34 35 36 37
NSString * const QUERYORDERDIRECTION_ASC = @"asc";
NSString * const QUERYORDERDIRECTION_DESC = @"desc";


@implementation QueryDefinition
@synthesize orders;
@synthesize pageNumber;
@synthesize pageSize;
38 39 40

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
41
    return YES;
42 43 44 45 46
}


@end

Sandy's avatar
Sandy committed
47 48 49 50 51 52
@implementation RsQueryResult
@synthesize paging;
@synthesize page;
@synthesize pageSize;
@synthesize pageCount;
@synthesize recordCount;
53 54 55

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
56
    return YES;
57 58 59 60 61
}


@end

Sandy's avatar
Sandy committed
62 63 64 65 66
@implementation LoginRequest
@synthesize userName;
@synthesize password;
@synthesize longitude;
@synthesize latitude;
67 68 69

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
70
    return YES;
71 72 73 74 75
}


@end

Sandy's avatar
Sandy committed
76
@implementation ModifyPasswordRequest
77
@synthesize userName;
Sandy's avatar
Sandy committed
78
@synthesize oldPassword;
79 80 81 82
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
83
    return YES;
84 85 86 87 88
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
89 90 91
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newPassword": @"fnewPassword",
                                                       }];
92 93 94
}


Sandy's avatar
Sandy committed
95 96 97 98 99 100 101 102 103 104 105 106
@end

@implementation CheckOrderRequest
@synthesize userId;
@synthesize orderIds;

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


107 108
@end

Sandy's avatar
Sandy committed
109
@implementation ResetPasswordRequest
110
@synthesize userName;
Sandy's avatar
Sandy committed
111
@synthesize smsCode;
112 113 114 115
@synthesize fnewPassword;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
116
    return YES;
117 118 119 120 121
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
122 123 124
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newPassword": @"fnewPassword",
                                                       }];
125 126 127 128 129
}


@end

Sandy's avatar
Sandy committed
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
@implementation CheckTicketRequest
@synthesize ticketNumber;
@synthesize checkManId;
@synthesize checkManName;
@synthesize checkDate;

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


@end

@implementation StationUserAcctHisEntity
Sandy's avatar
Sandy committed
145
@synthesize fid;
Sandy's avatar
Sandy committed
146 147 148 149 150 151 152 153
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
Sandy's avatar
Sandy committed
154
@synthesize userId;
Sandy's avatar
Sandy committed
155 156 157 158 159 160
@synthesize oldBalance;
@synthesize occur;
@synthesize fnewBalance;
@synthesize billNumber;
@synthesize action;
@synthesize remark;
Sandy's avatar
Sandy committed
161
@synthesize userName;
Sandy's avatar
Sandy committed
162
@synthesize tradeNo;
Sandy's avatar
Sandy committed
163 164 165

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
166
    return YES;
Sandy's avatar
Sandy committed
167 168 169 170 171
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
172 173 174 175
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"newBalance": @"fnewBalance",
                                                       @"id": @"fid",
                                                       }];
Sandy's avatar
Sandy committed
176 177 178 179 180
}


@end

Sandy's avatar
Sandy committed
181
@implementation DelegateCardBalanceEntity
182 183 184 185 186 187 188 189
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
Sandy's avatar
Sandy committed
190 191 192 193 194 195 196 197 198 199 200 201 202 203
@synthesize sysCompanyCode;
@synthesize type;
@synthesize billNumber;
@synthesize originalAmount;
@synthesize changeAmount;
@synthesize balanceAmount;
@synthesize cardNumber;
@synthesize payMethod;
@synthesize payFlowNum;
@synthesize state;
@synthesize checkerId;
@synthesize checkerName;
@synthesize checkDate;
@synthesize stationName;
204 205 206

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
207
    return YES;
208 209 210 211 212
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
213 214 215
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
216 217 218 219 220
}


@end

Sandy's avatar
Sandy committed
221
@implementation CommentEntity
222 223 224 225 226 227 228 229 230
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
Sandy's avatar
Sandy committed
231
@synthesize orderNumber;
232 233 234 235 236 237
@synthesize stationId;
@synthesize stationName;
@synthesize stationUserId;
@synthesize stationUserName;
@synthesize memberId;
@synthesize memberName;
Sandy's avatar
Sandy committed
238
@synthesize commentDate;
239 240 241

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
242
    return YES;
243 244 245 246 247
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
248 249 250
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
251 252 253
}


Sandy's avatar
Sandy committed
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
@end

@implementation CouponStockEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize couponNumber;
@synthesize name;
@synthesize type;
@synthesize total;
@synthesize realToal;
@synthesize state;
@synthesize memberId;
@synthesize memberName;
@synthesize orderNumber;
@synthesize validBeginDate;
@synthesize validEndDate;

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


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


Sandy's avatar
Sandy committed
292 293
@end

Sandy's avatar
Sandy committed
294
@implementation GasItemEntity
Sandy's avatar
Sandy committed
295 296 297 298 299 300 301 302 303
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
Sandy's avatar
Sandy committed
304
@synthesize code;
Sandy's avatar
Sandy committed
305 306 307 308
@synthesize name;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
309
    return YES;
Sandy's avatar
Sandy committed
310 311 312 313 314
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
315 316 317
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
Sandy's avatar
Sandy committed
318 319 320
}


321 322
@end

Sandy's avatar
Sandy committed
323
@implementation MemberEntity
324
@synthesize fid;
Sandy's avatar
Sandy committed
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize idno;
@synthesize mobilephone;
@synthesize name;
@synthesize password;
@synthesize wxid;
@synthesize alipayid;
@synthesize grade;
@synthesize imgurl;
@synthesize defCarNo;
@synthesize lstLoginTime;
@synthesize errLoginTime;
@synthesize status;
345 346 347

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
348
    return YES;
349 350 351 352 353
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
354 355 356
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
357 358 359
}


Sandy's avatar
Sandy committed
360 361
@end

Sandy's avatar
Sandy committed
362
@implementation RechargeBillEntity
Sandy's avatar
Sandy committed
363 364 365 366 367 368 369 370 371
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
Sandy's avatar
Sandy committed
372 373 374 375 376 377
@synthesize cardNumber;
@synthesize rechargeUserId;
@synthesize rechargeUserName;
@synthesize rechargeTime;
@synthesize originalAmount;
@synthesize rechargeAmount;
Sandy's avatar
Sandy committed
378
@synthesize remark;
Sandy's avatar
Sandy committed
379 380
@synthesize billNumber;
@synthesize state;
Sandy's avatar
Sandy committed
381 382 383

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
384
    return YES;
Sandy's avatar
Sandy committed
385 386 387 388 389
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
390 391 392
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
Sandy's avatar
Sandy committed
393 394 395
}


396 397
@end

Sandy's avatar
Sandy committed
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
@implementation OrderEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize billNumber;
@synthesize stationId;
@synthesize stationName;
@synthesize stationUserId;
@synthesize stationUserName;
@synthesize stationUserRealName;
@synthesize memberId;
@synthesize memberName;
@synthesize memberMobilephone;
@synthesize oilGunId;
@synthesize oilGunName;
@synthesize gasItemId;
@synthesize gasItemName;
@synthesize total;
@synthesize realPayTotal;
@synthesize payTime;
@synthesize payMethod;
@synthesize deduct;
@synthesize invoice;
@synthesize printed;
@synthesize lstPrintedTime;
@synthesize payFlowNum;
@synthesize state;
@synthesize remark;
@synthesize printId;
@synthesize vehicleNo;
@synthesize payFailedMsg;
@synthesize printState;
@synthesize invoiceId;
@synthesize alipayBuyerId;
@synthesize alipaybuyerLogonId;
Sandy's avatar
Sandy committed
439
@synthesize checkState;
440 441 442

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
443 444 445 446 447 448 449 450 451
    return YES;
}


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


@end

Sandy's avatar
Sandy committed
457 458 459 460 461 462 463 464
@implementation WxAccountMgrEntity
@synthesize active;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize accountId;
@synthesize userId;
465
@synthesize userName;
Sandy's avatar
Sandy committed
466
@synthesize realName;
467 468 469

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
470
    return YES;
471 472 473
}


Sandy's avatar
Sandy committed
474
+(JSONKeyMapper*)keyMapper
475
{
Sandy's avatar
Sandy committed
476 477 478
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
479 480 481 482 483
}


@end

Sandy's avatar
Sandy committed
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
@implementation WxKfAccountEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize username;
@synthesize password;
@synthesize accountId;
@synthesize nickName;
@synthesize workNum;
@synthesize headImgWxUrl;
@synthesize headImgMediaId;
@synthesize headImgLocalUrl;
@synthesize remark;
503 504 505

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
506
    return YES;
507 508 509
}


Sandy's avatar
Sandy committed
510
+(JSONKeyMapper*)keyMapper
511
{
Sandy's avatar
Sandy committed
512 513 514
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
515 516 517 518 519
}


@end

Sandy's avatar
Sandy committed
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 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 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 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
@implementation WxMediaEntity
@synthesize accountId;
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize type;
@synthesize fileName;
@synthesize fileRawName;
@synthesize templateName;
@synthesize fdescription;
@synthesize mediaId;
@synthesize realPath;
@synthesize mediaUrl;

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


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


@end

@implementation IdEntity
@synthesize fid;

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


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


@end

@implementation ComboBox
@synthesize fid;
@synthesize text;
@synthesize selected;

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


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


@end

@implementation Highchart
@synthesize name;
@synthesize data;
@synthesize type;

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


@end

@implementation ValidForm
@synthesize status;
@synthesize info;

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


@end

@implementation CgFormFieldEntity
@synthesize fid;
@synthesize fieldName;
@synthesize table;
@synthesize length;
@synthesize pointLength;
@synthesize type;
@synthesize isNull;
@synthesize isShow;
@synthesize showType;
@synthesize isQuery;
@synthesize queryMode;
@synthesize content;
@synthesize createDate;
@synthesize createBy;
@synthesize createName;
@synthesize updateDate;
@synthesize updateBy;
@synthesize updateName;
@synthesize orderNum;
@synthesize isKey;
@synthesize fieldLength;
@synthesize fieldHref;
@synthesize fieldValidType;
@synthesize dictField;
@synthesize dictTable;
@synthesize mainTable;
@synthesize mainField;
@synthesize oldFieldName;
@synthesize isShowList;
@synthesize dictText;
@synthesize fieldDefault;
@synthesize extendJson;

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


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


@end

@implementation CgFormIndexEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize indexName;
@synthesize indexField;
@synthesize indexType;
@synthesize table;

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


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


@end

@implementation GoodsEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize bpmStatus;
@synthesize name;
@synthesize code;
@synthesize fullName;
@synthesize outsideCode;
@synthesize manufacturersNo;
@synthesize supplier;
@synthesize productUnit;
@synthesize productOwner;
@synthesize brand;
@synthesize annual;
@synthesize season;
@synthesize productType;
@synthesize seriesName;
@synthesize sizeLength;
@synthesize sizeWidth;
@synthesize sizeHeight;
@synthesize sizeVolume;
@synthesize timeToMarket;
@synthesize priceCost;
@synthesize priceDrop;
@synthesize priceStandardSell;
@synthesize priceStandardBid;
@synthesize priceTrade;
@synthesize priceProxy;
@synthesize pricePlatform;
@synthesize gift;
@synthesize productVirtual;
@synthesize productCost;
@synthesize pointPack;
@synthesize pointSell;
@synthesize productUniquenessCode;
@synthesize batchManage;
@synthesize productSingleCode;
@synthesize expirationDate;
@synthesize supplyOfMaterialRound;
@synthesize safetyInventory;
@synthesize internationalCode;
@synthesize remark;
@synthesize productState;

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


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


@end

@implementation FileMeta
@synthesize fileName;
@synthesize fileSize;
@synthesize fileType;
@synthesize bytes;

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


@end

@implementation TableJson
@synthesize msg;
@synthesize success;
@synthesize tableType;
@synthesize tableData;
@synthesize subTableDate;

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


@end

@implementation CgFormHeadEntity
@synthesize fid;
@synthesize tableName;
@synthesize isTree;
@synthesize isPagination;
@synthesize isDbSynch;
@synthesize isCheckbox;
@synthesize querymode;
@synthesize content;
@synthesize createDate;
@synthesize createBy;
@synthesize createName;
@synthesize updateDate;
@synthesize updateBy;
@synthesize updateName;
@synthesize columns;
@synthesize indexes;
@synthesize jformVersion;
@synthesize jformType;
@synthesize jformPkType;
@synthesize jformPkSequence;
@synthesize subTableStr;
@synthesize relationType;
@synthesize tabOrder;
@synthesize treeParentIdFieldName;
@synthesize treeIdFieldname;
@synthesize treeFieldname;
@synthesize jformCategory;
@synthesize formTemplate;
@synthesize formTemplateMobile;

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


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


@end

@implementation AjaxJson
Sandy's avatar
Sandy committed
845
@synthesize msg;
Sandy's avatar
Sandy committed
846 847
@synthesize attributes;
@synthesize success;
Sandy's avatar
Sandy committed
848
@synthesize obj;
Sandy's avatar
Sandy committed
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055

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


@end

@implementation TreeGrid
@synthesize functionType;
@synthesize order;
@synthesize operations;
@synthesize attributes;
@synthesize parentText;
@synthesize code;
@synthesize src;
@synthesize note;
@synthesize fid;
@synthesize text;
@synthesize parentId;
@synthesize state;
@synthesize fieldMap;

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


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


@end

@implementation ComboTree
@synthesize fid;
@synthesize text;
@synthesize checked;
@synthesize attributes;
@synthesize children;
@synthesize state;
@synthesize iconCls;

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


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


@end

//@implementation AjaxJson
//@synthesize attributes;
//@synthesize msg;
//@synthesize obj;
//@synthesize success;
//
//+(BOOL)propertyIsOptional:(NSString*)propertyName
//{
//    return YES;
//}
//
//
//@end

@implementation WxTagEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize accountId;
@synthesize name;
@synthesize tagId;
@synthesize userCount;
@synthesize remark;

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


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


@end

@implementation WxFansEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize accountId;
@synthesize openid;
@synthesize nickname;
@synthesize sex;
@synthesize city;
@synthesize country;
@synthesize province;
@synthesize language;
@synthesize headimgurl;
@synthesize subscribeTime;
@synthesize unionid;
@synthesize remark;
@synthesize groupid;
@synthesize subscribe;

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


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


@end

@implementation OtherTicketEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize ticketNumber;
@synthesize name;
@synthesize type;
@synthesize total;
@synthesize realPayTotal;
@synthesize state;
@synthesize memberId;
@synthesize memberName;
@synthesize orderNumber;
@synthesize startDate;
@synthesize endDate;
@synthesize remak;
@synthesize distributeDate;

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


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


@end

@implementation InvoiceEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize memberId;
@synthesize memberName;
@synthesize invoiceNumber;
@synthesize type;
@synthesize title;
@synthesize deliveryAddress;
@synthesize receiver;
@synthesize mobilePhone;
@synthesize state;
@synthesize total;
1056 1057 1058

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1059
    return YES;
1060 1061 1062 1063 1064
}


+(JSONKeyMapper*)keyMapper
{
Sandy's avatar
Sandy committed
1065 1066 1067
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
1068 1069 1070
}


Sandy's avatar
Sandy committed
1071 1072
@end

Sandy's avatar
Sandy committed
1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
@implementation DelegateCardEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize cardNumber;
@synthesize stationId;
@synthesize stationName;
@synthesize balance;
@synthesize remark;

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


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


Sandy's avatar
Sandy committed
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
@end

@implementation CouponEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize name;
@synthesize type;
@synthesize total;
@synthesize realTotal;
@synthesize state;
@synthesize probability;
@synthesize validateDays;

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


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


Sandy's avatar
Sandy committed
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
@end

@implementation DrawCashBillEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize applicantName;
@synthesize applicantId;
@synthesize workpoint;
@synthesize cash;
Sandy's avatar
Sandy committed
1153
@synthesize state;
Sandy's avatar
Sandy committed
1154 1155 1156 1157 1158 1159 1160 1161 1162
@synthesize remark;
@synthesize approverName;
@synthesize approverId;
@synthesize checkerName;
@synthesize checkerId;
@synthesize cause;
@synthesize billNumber;
@synthesize finishDate;
@synthesize approveDate;
Sandy's avatar
Sandy committed
1163 1164 1165

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1166 1167 1168 1169 1170 1171 1172 1173 1174
    return YES;
}


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"id": @"fid",
                                                       }];
Sandy's avatar
Sandy committed
1175 1176 1177
}


1178 1179
@end

Sandy's avatar
Sandy committed
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
@implementation TOAppversionEntity
@synthesize fid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize version;
@synthesize url;
@synthesize forceupdate;
@synthesize apptype;

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


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


@end

@implementation StationUserAcctEntity
@synthesize fid;
@synthesize userId;
@synthesize userName;
@synthesize balance;
@synthesize dailyBillCount;
@synthesize drawBalance;

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


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


Sandy's avatar
Sandy committed
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
@end

@implementation TradeStatisticsResult
@synthesize orderCount;
@synthesize totalAmount;

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


Sandy's avatar
Sandy committed
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 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 1302 1303 1304
@end

@implementation LoginResult
@synthesize user;
@synthesize station;
@synthesize createOrderUrl;

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


@end

@implementation RsResponse
@synthesize code;
@synthesize message;
@synthesize data;

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


@end

@implementation ExceptionCode
@synthesize code;
@synthesize message;

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


@end

@implementation AlipayGzuserinfo
@synthesize fid;
@synthesize userid;
@synthesize name;
@synthesize department;
@synthesize position;
@synthesize mobile;
@synthesize province;
@synthesize gender;
@synthesize email;
@synthesize avatar;
@synthesize subscribeStatus;
@synthesize subscribeTime;
@synthesize accountid;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize logonid;
1305 1306 1307

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1308 1309 1310 1311 1312 1313 1314 1315 1316
    return YES;
}


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


@end

Sandy's avatar
Sandy committed
1322 1323
@implementation OrderQueryResult
@synthesize records;
Sandy's avatar
Sandy committed
1324
@synthesize total;
Sandy's avatar
Sandy committed
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353

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


@end

@implementation JeecgDemo
@synthesize status;
@synthesize mobilePhone;
@synthesize officePhone;
@synthesize email;
@synthesize age;
@synthesize salary;
@synthesize birthday;
@synthesize createDate;
@synthesize sex;
@synthesize depId;
@synthesize userName;
@synthesize content;

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


Sandy's avatar
Sandy committed
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
@end

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

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


Sandy's avatar
Sandy committed
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
@end

@implementation TSDepart
@synthesize TSPDepart;
@synthesize departname;
@synthesize fdescription;
@synthesize TSDeparts;
@synthesize orgCode;
@synthesize orgType;
@synthesize mobile;
@synthesize fax;
@synthesize address;

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


+(JSONKeyMapper*)keyMapper
{
    return [[JSONKeyMapper alloc] initWithDictionary:@{
                                                       @"description": @"fdescription",
                                                       }];
1401 1402 1403 1404 1405
}


@end

Sandy's avatar
Sandy committed
1406 1407
@implementation WithdrawQueryResult
@synthesize records;
1408 1409 1410

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
    return YES;
}


@end

@implementation TSUserOrg
@synthesize tsUser;
@synthesize tsDepart;

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


@end

@implementation WxMassBillEntity
@synthesize accountId;
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize billNumber;
@synthesize msgType;
@synthesize textMsg;
@synthesize templateId;
@synthesize mediaId;
@synthesize isToAll;
@synthesize sendIgnoreReprint;
@synthesize cardId;
@synthesize cardName;
@synthesize msgId;
@synthesize msgDataId;
@synthesize sendStatus;
@synthesize sendErrMsg;
@synthesize totalCount;
@synthesize filterCount;
@synthesize sentCount;
@synthesize errorCount;
@synthesize checkState;
@synthesize remark;
@synthesize templateName;
@synthesize userTagId;
@synthesize userTagName;

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


Sandy's avatar
Sandy committed
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
@end

@implementation OrderQueryDefintion
@synthesize userId;
@synthesize userNameLike;
@synthesize billNumberLike;
@synthesize endDate;
@synthesize state;
@synthesize beginDate;
@synthesize checkState;

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


Sandy's avatar
Sandy committed
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
@end

@implementation WithdrawQueryDefintion
@synthesize userId;
@synthesize userNameLike;
@synthesize billNumberLike;
@synthesize endDate;
@synthesize state;
@synthesize beginDate;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
    return YES;
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
}


@end

@implementation AccountHistoryQueryResult
@synthesize records;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1508
    return YES;
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
}


@end

@implementation AccountHistoryQueryDefintion
@synthesize userId;
@synthesize beginDate;
@synthesize endDate;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1521
    return YES;
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540
}


@end

@implementation TSUser
@synthesize signatureFile;
@synthesize mobilePhone;
@synthesize officePhone;
@synthesize email;
@synthesize createDate;
@synthesize createBy;
@synthesize createName;
@synthesize updateDate;
@synthesize updateBy;
@synthesize updateName;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1541
    return YES;
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
}


@end

@implementation StationEntity
@synthesize createName;
@synthesize createBy;
@synthesize createDate;
@synthesize updateName;
@synthesize updateBy;
@synthesize updateDate;
@synthesize sysOrgCode;
@synthesize sysCompanyCode;
@synthesize province;
@synthesize city;
@synthesize county;
@synthesize brand;
@synthesize longitude;
@synthesize latitude;
@synthesize partner;
@synthesize services;
@synthesize grade;
@synthesize remark;
@synthesize printerMachineCode;
@synthesize printerKey;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1571
    return YES;
1572 1573 1574 1575 1576 1577
}


@end

@implementation StationUserEntity
Sandy's avatar
Sandy committed
1578
@synthesize wxOpenId;
1579 1580 1581 1582
@synthesize worknum;

+(BOOL)propertyIsOptional:(NSString*)propertyName
{
Sandy's avatar
Sandy committed
1583
    return YES;
1584 1585 1586 1587 1588
}


@end