12345678910111213141516171819202122232425262728 |
- //
- // SelectedTimeModel.h
- // smartRhino
- //
- // Created by Android on 2019/12/21.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- ///
- @interface SelectedTimeModel : NSObject
- /// 日期
- @property (copy, nonatomic) NSString *date;
- /// 时间
- @property (copy, nonatomic) NSString *time;
- /// 年月日的时间
- @property (copy, nonatomic) NSString *yearAndMonthAndDay;
- /// 索引
- @property (strong, nonatomic) NSIndexPath *indexPath;
- - (NSComparisonResult)compareIndex:(SelectedTimeModel *)otherModel;
- @end
- NS_ASSUME_NONNULL_END
|