CustomerTraceListSearchModel.h 617 B

123456789101112131415161718192021222324
  1. //
  2. // CustomerTraceListSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/4/10.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define CUSTOMER_TRACE_LIST_SEARCH_MODEL @"CUSTOMER_TRACE_LIST_SEARCH_MODEL"
  10. @interface CustomerTraceListSearchModel : NSObject
  11. @property(nonatomic,strong)NSString *organizationCode;
  12. @property(nonatomic,strong)NSString *estimateSalesAmountStartDate;
  13. @property(nonatomic,strong)NSString *estimateSalesAmountEndDate;
  14. @property(nonatomic,strong)NSString *accountStartDate;
  15. @property(nonatomic,strong)NSString *accountEndDate;
  16. @end