| 123456789101112131415161718192021222324 |
- //
- // CustomerTraceListSearchModel.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/4/10.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #define CUSTOMER_TRACE_LIST_SEARCH_MODEL @"CUSTOMER_TRACE_LIST_SEARCH_MODEL"
- @interface CustomerTraceListSearchModel : NSObject
- @property(nonatomic,strong)NSString *organizationCode;
- @property(nonatomic,strong)NSString *estimateSalesAmountStartDate;
- @property(nonatomic,strong)NSString *estimateSalesAmountEndDate;
- @property(nonatomic,strong)NSString *accountStartDate;
- @property(nonatomic,strong)NSString *accountEndDate;
- @end
|