单军华
2018-07-12 3e8437ae559487362fae3525beb79c534c213a51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//
//  UserModel.h
//  screendisplay
//
//  Created by 单军华 on 2018/7/3.
//  Copyright © 2018年 单军华. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface UserModel : NSObject
 
@property(nonatomic, strong) NSString * id;
@property(nonatomic, strong) NSString * password;
@property(nonatomic, strong) NSString * accountName;
@property(nonatomic, strong) NSString * organizationId;
 
//"code": 0,
//"data": {
//    "accountName": "string",
//    "createTime": "2018-07-09T01:55:44.434Z",
//    "email": "string",
//    "expireTime": "2018-07-09T01:55:44.434Z",
//    "id": 0,
//    "isDelete": "string",
//    "jwtTokenVersion": {
//        "accountName": 0,
//        "id": 0,
//        "updateTime": "2018-07-09T01:55:44.434Z"
//    },
//    "mobile": "string",
//    "organization": {
//        "address": "string",
//        "areaCode": 0,
//        "areaNames": {
//            "areaName": "string",
//            "cityName": "string",
//            "provinceName": "string",
//            "townName": "string",
//            "villageName": "string"
//        },
//        "cityCode": 0,
//        "createTime": "2018-07-09T01:55:44.434Z",
//        "description": "string",
//        "email": "string",
//        "expireTime": "2018-07-09T01:55:44.434Z",
//        "id": 0,
//        "isDelete": "string",
//        "name": "string",
//        "provinceCode": 0,
//        "rank": 0,
//        "telephone": "string"
//    },
//    "organizationId": 0,
//    "password": "string",
//    "roles": [{
//        "name": "string"
//    }],
//    "userName": "string",
//    "weixin": "string"
//},
//"message": "string"
 
@end