SelectedTimeModel.h 596 B

12345678910111213141516171819202122232425262728
  1. //
  2. // SelectedTimeModel.h
  3. // smartRhino
  4. //
  5. // Created by Android on 2019/12/21.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. ///
  11. @interface SelectedTimeModel : NSObject
  12. /// 日期
  13. @property (copy, nonatomic) NSString *date;
  14. /// 时间
  15. @property (copy, nonatomic) NSString *time;
  16. /// 年月日的时间
  17. @property (copy, nonatomic) NSString *yearAndMonthAndDay;
  18. /// 索引
  19. @property (strong, nonatomic) NSIndexPath *indexPath;
  20. - (NSComparisonResult)compareIndex:(SelectedTimeModel *)otherModel;
  21. @end
  22. NS_ASSUME_NONNULL_END