CustomerBalanceViewController.h 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // CustomerBalanceViewController.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 CustomerBalanceViewController : BaseViewController
  12. // 查询条件
  13. @property(copy, nonatomic)NSString *sOrg;
  14. @property(copy, nonatomic)NSString *sStaff;
  15. @property(copy, nonatomic)NSString *sSummaryType;
  16. @property(copy, nonatomic)NSString *isBalance;
  17. @property(copy, nonatomic)NSString *customerCode;
  18. @property(copy, nonatomic)NSString *customerName;
  19. /**
  20. 应收-预存-定金
  21. */
  22. @property (nonatomic, strong) UILabel *lblReceivableAndDepositAndEarnest;
  23. /**
  24. 应收
  25. */
  26. @property (nonatomic, strong) UILabel *lblReceivable;
  27. /**
  28. 预存
  29. */
  30. @property (nonatomic, strong) UILabel *lblDeposit;
  31. /**
  32. 定金
  33. */
  34. @property (nonatomic, strong) UILabel *lblEarnest;
  35. /**
  36. 抽屉对象
  37. */
  38. @property (strong, nonatomic) SideSlipFilterController *filterController;
  39. @end