| 123456789101112131415161718192021222324252627 |
- //
- // HistoryOrderTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/24.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderItemModel.h"
- #import "HistoryOrderFrame.h"
- #import "HistoryOrderDelegate.h"
- @interface HistoryOrderTableViewCell : UITableViewCell
- @property(strong) UIButton *btnDelete;//删除按钮
- @property(strong) UILabel * lblOrderNo;//订单号
- @property(strong) UILabel * lblCustomerName;//客户名称
- @property(strong) UILabel * lblCreateDate;//创建日期
- @property(strong) UILabel * lblMarkedPriceAmount;//标价总额
- @property(strong) UILabel * lblGoodsAmount;//货物总额
- @property(strong) UILabel * lblSalesMan;//业务员
- @property(strong) UILabel * lblChannel;//渠道
- @property(strong) UILabel * lblDepartment;//业务部门
- @property(strong) UILabel * lblAddress;//地址
- @property(strong) OrderItemModel *orderModel;//订单类
- @property(weak) id<HistoryOrderDelegate> delegate;//历史订单委托
- -(void)parseCartInfo:(HistoryOrderFrame *)orderFrame;//历史订单frame
- @end
|