| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // SingleProfitCell.h
- // IBOSSmini
- //
- // Created by apple on 2017/5/18.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SingleProfitCell : UITableViewCell
- /**
- id
- */
- @property(nonatomic,assign) NSString *profitID;
- /**
- 客户名称
- */
- @property (nonatomic, strong) UILabel *lblValueCustomerName;
- /**
- 时间
- */
- @property (nonatomic, strong) UILabel *lblValueCreateTime;
- /**
- 业务类型
- */
- @property (nonatomic, strong) UILabel *lblValueCustomerType;
- /**
- 业务员
- */
- @property (nonatomic, strong) UILabel *lblValueStaff;
- /**
- 业务部门
- */
- @property (nonatomic, strong) UILabel *lblValueOrg;
- /**
- 收入成本毛利
- */
- @property (nonatomic, strong) UILabel *lblValueIncomeAndCostAndProfit;
- @end
|