| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // SingleProfitAnalyseListCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2019/4/11.
- // Copyright © 2019 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SingleProfitAnalyseListModel.h"
- @interface SingleProfitAnalyseListCell : UITableViewCell
- @property(nonatomic,strong)UILabel *lblDepartment;
- @property(nonatomic,strong)UILabel *lblInvoiceType;
- @property(nonatomic,strong)UILabel *lblStaffAmount;
- @property(nonatomic,strong)UILabel *lblServiceAmount;
- @property(nonatomic,strong)UILabel *lblCustomerAmount;
- @property(nonatomic,strong)UILabel *lblFeeAmount;
- @property(nonatomic,strong)UILabel *lblRebatesSum;
- @property(nonatomic,strong)UILabel *lblRateOfMargin;
- @property(nonatomic,strong)UILabel *lblAmountCostMargin;
- @property(nonatomic,strong)UILabel *lblIncome;
- @property(nonatomic,strong)UILabel *lblCost;
- @property(nonatomic,strong)UILabel *lblMargin;
- @property(nonatomic,strong)UILabel *lblProfit;
- -(void)setSingleProfitAnalyseListCell:(SingleProfitAnalyseListModel*) singleProfitListModel;
- @end
|