YOUPAIHRDatePickerView.h 505 B

12345678910111213141516171819
  1. //
  2. // YOUPAIHRDatePickerView.h
  3. // VQU
  4. //
  5. // Created by xiaohaoran on 2021/11/5.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void (^SelectMonthDate)(NSString *date);
  11. typedef void (^SelectDayDate)(NSString *starTime,NSString *endTime);
  12. @interface YOUPAIHRDatePickerView : ZYBaseWindow
  13. @property(nonatomic,copy)SelectMonthDate youpaipselectMonthDate;
  14. @property(nonatomic,copy)SelectDayDate youpaipselectDayDate;
  15. @end
  16. NS_ASSUME_NONNULL_END