SingleProfitSearchModel.h 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // SingleProfitSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by apple on 2017/5/19.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:每单利润表查询model
  9. //
  10. #import <Foundation/Foundation.h>
  11. #define SINGLE_PROFIT_SEARCH_RANGE_MODEL @"SINGLE_PROFIT_SEARCH_RANGE_MODEL"
  12. @interface SingleProfitSearchModel : NSObject
  13. /**
  14. 开始日期
  15. */
  16. @property (copy, nonatomic) NSString *sStartDate;
  17. /**
  18. 结束日期
  19. */
  20. @property (copy, nonatomic) NSString *sEndDate;
  21. /**
  22. 业务部门
  23. */
  24. @property (copy, nonatomic) NSString *sOrg;
  25. /**
  26. 业务员
  27. */
  28. @property (copy, nonatomic) NSString *sStaff;
  29. /**
  30. 客户名称
  31. */
  32. @property (copy, nonatomic) NSString *sCustomerName;
  33. @property(nonatomic,strong)NSString *sCustomerCode;
  34. @property(nonatomic,strong) NSString *sBusinessType;
  35. @property(nonatomic,strong)NSString *sCustomerAddress;
  36. @end