SChargerVC.h 629 B

1234567891011121314151617181920212223
  1. //
  2. // SChargerVC.h
  3. // BuguLive
  4. //
  5. // Created by 丁凯 on 2017/8/28.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SChargerVC : BGBaseViewController
  10. {
  11. UIView *_headView;
  12. }
  13. @property (nonatomic, strong) SegmentView *feeSegmentView; //按时收费 按场收费
  14. @property (nonatomic, strong) SegmentView *recordSegmentView; //付费记录 收费记录
  15. @property ( nonatomic, assign) int feeIndex; //0按时 1按场
  16. @property ( nonatomic, assign) int recordIndex; //0付费 1收费
  17. @end