CitySearchResponse.h
831 Bytes
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
//
// CitySearchResponse.h
// ***************************************************************
// Copyright (c) 2014 –苏州犀牛网络科技有限公司
// Title: com.xiniunet.basic.domain.
// Description: basic Domain
// @author 吕浩
// ***************************************************************
//
#import "BaseResponse.h"
#import "City.h"
@interface CitySearchResponse : BaseResponse
/**
* @brief 结果总数
*/
@property(nonatomic,readonly) UInt64 totalCount;
/**
* @brief 结果列表
*/
@property(nonatomic,readonly) NSArray* result;
@property BaseResponse *baseResponse;
/**
* @brief 取得City模型时使用的下标
*/
@property(atomic) NSInteger city_cursor;
/**
* @brief City模型
*/
@property(nonatomic,readonly) City *city;
/**
* @brief 初始化
*/
- (instancetype)init;
@end