-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGGTimeLineItem.h
More file actions
33 lines (26 loc) · 1.26 KB
/
Copy pathGGTimeLineItem.h
File metadata and controls
33 lines (26 loc) · 1.26 KB
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
//
// GGTimeLineItem.h
// Taurus
//
// Created by 王刚 on 2018/12/11.
// Copyright © 2018年 LOVER. All rights reserved.
//
#import "BaseModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface GGTimeLineItem : BaseModel
//分时线
@property (nonatomic, strong) NSString * amount; //成交额
@property (nonatomic, strong) NSString * AvgPirce; //平均价
@property (nonatomic, strong) NSString * change; //波动
@property (nonatomic, strong) NSString * ClosePrice; //收盘价
@property (nonatomic, strong) NSString * CurrentPrice; //当前价
@property (nonatomic, strong) NSString * CurrentTime; //时间
@property (nonatomic, strong) NSString * MaxPrice; //最高
@property (nonatomic, strong) NSString * MinPrice; //最低
@property (nonatomic, strong) NSString * percent; //波动比
@property (nonatomic, strong) NSString * stockSymbol; //股票编码
@property (nonatomic, strong) NSString * DataTime_stamp; //标准时间戳
@property (nonatomic, strong) NSString * LastVolume_trade; //
@property (nonatomic, strong) NSString * Volume; //成交量
@end
NS_ASSUME_NONNULL_END