CustomerBalanceSearchModel.h 880 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // CustomerBalanceSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/24.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:客户往来余额查询条件model
  9. //
  10. #import <Foundation/Foundation.h>
  11. #define CUSTOMER_BALANCE_SEARCH_RANGE_MODEL @"CUSTOMER_BALANCE_SEARCH_RANGE_MODEL"
  12. @interface CustomerBalanceSearchModel : NSObject
  13. /**
  14. 业务部门
  15. */
  16. @property (copy, nonatomic) NSString *sOrg;
  17. /**
  18. 业务员
  19. */
  20. @property (copy, nonatomic) NSString *sStaff;
  21. /**
  22. 汇总类型
  23. */
  24. @property (copy, nonatomic) NSString *sSummaryType;
  25. @property(nonatomic,strong) NSString *sCustomerCode;
  26. @property(nonatomic,strong) NSString *sCustomerName;
  27. @property(nonatomic,strong) NSString *sCustomerAddress;
  28. @property(nonatomic,strong) NSString *filter;
  29. @property(nonatomic,strong) NSString *sSecondaryStaff;
  30. @end