| 12345678910111213141516171819 |
- //
- // DailyReconciliationSearchModel.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/9/30.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define DAILY_RECONCILIATION_SEARCH_RANGE_MODEL @"DAILY_RECONCILIATION_SEARCH_RANGE_MODEL"
- @interface DailyReconciliationSearchModel : NSObject
- @property(nonatomic,strong) NSString *startDate;
- @property(nonatomic,strong) NSString *endDate;
- @end
|