InComeDataCell.h 447 B

123456789101112131415161718
  1. //
  2. // InComeDataCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/8/11.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface InComeDataCell : UITableViewCell
  10. //累计收入
  11. @property (weak, nonatomic) IBOutlet UILabel *totalInCome_Lab;
  12. //待结算
  13. @property (weak, nonatomic) IBOutlet UILabel *pendSettlement_Lab;
  14. //竞拍管理
  15. @property (weak, nonatomic) IBOutlet UIButton *auctionManagement_Btn;
  16. @end