#import <UIKit/UIKit.h>
@interface TradeCell : UITableViewCell {
UILabel *labelStartDate;
UILabel *labelEndDate;
UILabel *labelTradeType;
UILabel *labelCode;
UILabel *labelAmount;
UILabel *labelStartPrice;
UILabel *labelEndPrice;
UILabel *labelPosition;
UILabel *labelProfitLoss;
UILabel *labelProfitLossRate;
UILabel *labelFee;
UILabel *labelTax;
UILabel *labelInterest;
}
@property (nonatomic, retain) IBOutlet UILabel *labelStartDate;
@property (nonatomic, retain) IBOutlet UILabel *labelEndDate;
@property (nonatomic, retain) IBOutlet UILabel *labelTradeType;
@property (nonatomic, retain) IBOutlet UILabel *labelCode;
@property (nonatomic, retain) IBOutlet UILabel *labelAmount;
@property (nonatomic, retain) IBOutlet UILabel *labelStartPrice;
@property (nonatomic, retain) IBOutlet UILabel *labelEndPrice;
@property (nonatomic, retain) IBOutlet UILabel *labelPosition;
@property (nonatomic, retain) IBOutlet UILabel *labelProfitLoss;
@property (nonatomic, retain) IBOutlet UILabel *labelProfitLossRate;
@property (nonatomic, retain) IBOutlet UILabel *labelFee;
@property (nonatomic, retain) IBOutlet UILabel *labelTax;
@property (nonatomic, retain) IBOutlet UILabel *labelInterest;
@end