| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // CustomerBalanceViewController.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/15.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "SideSlipFilterController.h"
- #import "SideSlipModel.h"
- @interface CustomerBalanceViewController : BaseViewController
- // 查询条件
- @property(copy, nonatomic)NSString *sOrg;
- @property(copy, nonatomic)NSString *sStaff;
- @property(copy, nonatomic)NSString *sSummaryType;
- @property(copy, nonatomic)NSString *isBalance;
- @property(copy, nonatomic)NSString *customerCode;
- @property(copy, nonatomic)NSString *customerName;
- /**
- 应收-预存-定金
- */
- @property (nonatomic, strong) UILabel *lblReceivableAndDepositAndEarnest;
- /**
- 应收
- */
- @property (nonatomic, strong) UILabel *lblReceivable;
- /**
- 预存
- */
- @property (nonatomic, strong) UILabel *lblDeposit;
- /**
- 定金
- */
- @property (nonatomic, strong) UILabel *lblEarnest;
- /**
- 抽屉对象
- */
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @end
|