OrderSalesSearchModel.h 924 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // OrderSalesSearchModel.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/5/26.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:订单销售单查询模型
  9. //
  10. #import <Foundation/Foundation.h>
  11. @interface OrderSalesSearchModel : NSObject
  12. /**
  13. id
  14. */
  15. @property (strong,nonatomic) NSString *invoiceTypeId;
  16. /**
  17. 客户名称
  18. */
  19. @property (strong,nonatomic) NSString *customerName;
  20. @property (strong,nonatomic) NSString *customerAddress;
  21. /**
  22. 电话
  23. */
  24. @property (strong,nonatomic) NSString *contactTelephone;
  25. /**
  26. 开始日期
  27. */
  28. @property (strong,nonatomic) NSString *startDate;
  29. /**
  30. 结束日期
  31. */
  32. @property (strong,nonatomic) NSString *endDate;
  33. /**
  34. 业务员
  35. */
  36. @property (strong,nonatomic) NSString *staffId;
  37. /**
  38. 冲正状态
  39. */
  40. @property (strong,nonatomic) NSString *correctStatus;
  41. @property(nonatomic,strong) NSString *departmentCode;
  42. @end