| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // SingleProfitViewController.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 SingleProfitViewController : BaseViewController
- // 查询条件
- @property(copy, nonatomic)NSString *sOrgCode;
- @property(copy, nonatomic)NSString *sStaffName;
- @property(copy, nonatomic)NSString *sStartDate;
- @property(copy, nonatomic)NSString *sEndDate;
- @property(copy, nonatomic)NSString *sCustomerCode;
- @property(copy, nonatomic)NSString *sCustomerName;
- @property(copy, nonatomic)NSString *sBusinessType;
- /**
- 收入总额
- */
- @property (nonatomic, strong) UILabel *lbtotalIncometValue;
- /**
- 成本总额
- */
- @property (nonatomic, strong) UILabel *lbtotalCostValue;
- /**
- 毛利总额
- */
- @property (nonatomic, strong) UILabel *lbtotalProfitValue;
- /**
- 抽屉对象
- */
- @property (strong, nonatomic) SideSlipFilterController *filterController;
- @end
|