MyApprovalPageDetail.h 586 B

1234567891011121314151617181920212223
  1. //
  2. // MyApprovalPageDetail.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/4.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyApprovalPageDetail : BaseViewController
  11. @property (nonatomic, copy) NSString * Stats;
  12. @property (nonatomic,assign) MyApprovalPageType pageType;
  13. @property (nonatomic, assign) NSInteger indexId;
  14. @property (nonatomic, assign) NSInteger TodoId;
  15. @property (nonatomic, assign) NSInteger userId;
  16. @property (copy, nonatomic) void(^ActionSussBlock)(void);
  17. @end
  18. NS_ASSUME_NONNULL_END