IssueBaseSettingVC.h 531 B

12345678910111213141516171819202122232425
  1. //
  2. // IssueBaseSettingVC.h
  3. // jiaPeiC
  4. //
  5. // Created by apple on 16/6/14.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^SuccessBlock)(NSString *currentDateString);
  10. @interface IssueBaseSettingVC : UIViewController
  11. @property (nonatomic, copy) NSString *dateString;
  12. @property (nonatomic, strong) NSArray *dataArray;
  13. @property (nonatomic, strong) NSArray *moneyArray;
  14. @property (nonatomic, strong) SuccessBlock successBlock;
  15. - (void)initSuccessBlock:(SuccessBlock)block;
  16. @end