SingleProfitViewController.h 1005 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // SingleProfitViewController.h
  3. // IBOSSmini
  4. //
  5. // Created by apple on 2017/5/15.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "SideSlipFilterController.h"
  10. #import "SideSlipModel.h"
  11. @interface SingleProfitViewController : BaseViewController
  12. // 查询条件
  13. @property(copy, nonatomic)NSString *sOrgCode;
  14. @property(copy, nonatomic)NSString *sStaffName;
  15. @property(copy, nonatomic)NSString *sStartDate;
  16. @property(copy, nonatomic)NSString *sEndDate;
  17. @property(copy, nonatomic)NSString *sCustomerCode;
  18. @property(copy, nonatomic)NSString *sCustomerName;
  19. @property(copy, nonatomic)NSString *sBusinessType;
  20. /**
  21. 收入总额
  22. */
  23. @property (nonatomic, strong) UILabel *lbtotalIncometValue;
  24. /**
  25. 成本总额
  26. */
  27. @property (nonatomic, strong) UILabel *lbtotalCostValue;
  28. /**
  29. 毛利总额
  30. */
  31. @property (nonatomic, strong) UILabel *lbtotalProfitValue;
  32. /**
  33. 抽屉对象
  34. */
  35. @property (strong, nonatomic) SideSlipFilterController *filterController;
  36. @end