AccountDetailCell.h 496 B

12345678910111213141516171819202122232425
  1. //
  2. // AccountDetailCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/8/23.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. //这个cell的高度为80
  9. #import <UIKit/UIKit.h>
  10. @interface AccountDetailCell : UITableViewCell
  11. @property (nonatomic, retain) UILabel *titleLabel;
  12. @property (nonatomic, retain) UILabel *stateLabel;
  13. @property (nonatomic, retain) UILabel *dateLabel;
  14. @property (nonatomic, retain) UILabel *moneyLabel;
  15. @property (nonatomic, retain) NSDictionary *dataDic;
  16. @end