SingleProfitAnalyseListCell.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // SingleProfitAnalyseListCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2019/4/11.
  6. // Copyright © 2019 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SingleProfitAnalyseListModel.h"
  10. @interface SingleProfitAnalyseListCell : UITableViewCell
  11. @property(nonatomic,strong)UILabel *lblDepartment;
  12. @property(nonatomic,strong)UILabel *lblInvoiceType;
  13. @property(nonatomic,strong)UILabel *lblStaffAmount;
  14. @property(nonatomic,strong)UILabel *lblServiceAmount;
  15. @property(nonatomic,strong)UILabel *lblCustomerAmount;
  16. @property(nonatomic,strong)UILabel *lblFeeAmount;
  17. @property(nonatomic,strong)UILabel *lblRebatesSum;
  18. @property(nonatomic,strong)UILabel *lblRateOfMargin;
  19. @property(nonatomic,strong)UILabel *lblAmountCostMargin;
  20. @property(nonatomic,strong)UILabel *lblIncome;
  21. @property(nonatomic,strong)UILabel *lblCost;
  22. @property(nonatomic,strong)UILabel *lblMargin;
  23. @property(nonatomic,strong)UILabel *lblProfit;
  24. -(void)setSingleProfitAnalyseListCell:(SingleProfitAnalyseListModel*) singleProfitListModel;
  25. @end