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
//
// ICRStoreResult.h
// XFFruit
//
// Created by Xummer on 15/6/7.
// Copyright (c) 2015年 Xummer. All rights reserved.
//
#import "IBTModel.h"
@interface ICRStoreResult : IBTModel
//uuid 巡店结果uuid 否 String 38
//user 员工 否
//store 门店 否
//longitue 经度 否 String 20
//latitude 纬度 否 String 20
//beginTime 开始时间 否 Date
//endTime 结束时间 否 Date
//remark 说明 是 String 255
//answers 答案列表 否 Answer
@property (copy, nonatomic) NSString * uuid;
@property (copy, nonatomic) NSDictionary * user;
@property (copy, nonatomic) NSDictionary * store;
@property (copy, nonatomic) NSString * longitude;
@property (copy, nonatomic) NSString * latitude;
@property (copy, nonatomic) NSString * beginTime;
@property (copy, nonatomic) NSString * endTime;
@property (copy, nonatomic) NSString *remark;
@property (copy, nonatomic) NSArray * answers;
@property (copy, nonatomic) NSString *uploadTime;
//local
@property (assign, nonatomic) BOOL isNotUploaded;
@end