HistoryOrderTableViewCell.h 1.1 KB

123456789101112131415161718192021222324252627
  1. //
  2. // HistoryOrderTableViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/24.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "OrderItemModel.h"
  10. #import "HistoryOrderFrame.h"
  11. #import "HistoryOrderDelegate.h"
  12. @interface HistoryOrderTableViewCell : UITableViewCell
  13. @property(strong) UIButton *btnDelete;//删除按钮
  14. @property(strong) UILabel * lblOrderNo;//订单号
  15. @property(strong) UILabel * lblCustomerName;//客户名称
  16. @property(strong) UILabel * lblCreateDate;//创建日期
  17. @property(strong) UILabel * lblMarkedPriceAmount;//标价总额
  18. @property(strong) UILabel * lblGoodsAmount;//货物总额
  19. @property(strong) UILabel * lblSalesMan;//业务员
  20. @property(strong) UILabel * lblChannel;//渠道
  21. @property(strong) UILabel * lblDepartment;//业务部门
  22. @property(strong) UILabel * lblAddress;//地址
  23. @property(strong) OrderItemModel *orderModel;//订单类
  24. @property(weak) id<HistoryOrderDelegate> delegate;//历史订单委托
  25. -(void)parseCartInfo:(HistoryOrderFrame *)orderFrame;//历史订单frame
  26. @end