// // IntegralDetailsTableViewCell.h // Lighting // // Created by 曹云霄 on 2016/11/21. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import <UIKit/UIKit.h> @interface IntegralDetailsTableViewCell : UITableViewCell /** 积分类型 */ @property (weak, nonatomic) IBOutlet UILabel *integralTypeLabel; /** 生成时间 */ @property (weak, nonatomic) IBOutlet UILabel *integralTimeLabel; /** 积分数 */ @property (weak, nonatomic) IBOutlet UILabel *integralNumberLabel;
/** 积分数据 */ @property (nonatomic,strong) TOScoreRecordEntity *integralEntity;
@end