1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// CardJEModel.h
//
// Create by Javen Zhang on 28/12/2016
// Copyright © 2016. All rights reserved.
//
// Model file Generated using JSONExport: https://github.com/Ahmed-Ali/JSONExport
#import <UIKit/UIKit.h>
@interface CardJEModel : NSObject
@property (nonatomic, strong) NSString * createBy;
@property (nonatomic, strong) NSString * createDate;
@property (nonatomic, strong) NSString * createName;
@property (nonatomic, strong) NSString * distributeDate;
@property (nonatomic, strong) NSString * endDate;
@property (nonatomic, strong) NSString * idField;
@property (nonatomic, strong) NSString * memberId;
@property (nonatomic, strong) NSString * memberName;
@property (nonatomic, strong) NSString * name;
@property (nonatomic, strong) NSString * orderNumber;
@property (nonatomic, assign) double realPayTotal;
@property (nonatomic, strong) NSString * remak;
@property (nonatomic, strong) NSString * startDate;
@property (nonatomic, strong) NSString * state;
@property (nonatomic, strong) NSString * sysCompanyCode;
@property (nonatomic, strong) NSString * sysOrgCode;
@property (nonatomic, strong) NSString * ticketNumber;
@property (nonatomic, assign) double total;
@property (nonatomic, strong) NSString * type;
@property (nonatomic, strong) NSString * updateBy;
@property (nonatomic, strong) NSString * updateDate;
@property (nonatomic, strong) NSString * updateName;
-(instancetype)initWithDictionary:(NSDictionary *)dictionary;
-(NSDictionary *)toDictionary;
@end