| 12345678910111213141516171819202122232425 |
- //
- // OrderdetailCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/24.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "OrderdetailModel.h"
- @interface OrderdetailCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *state;//状态
- @property(copy,nonatomic)UILabel *ordernumber;//订单编号
- @property(copy,nonatomic)UILabel *time;//时间
- @property(copy,nonatomic)UITextField *price;//价格
- @property(copy,nonatomic)UILabel *number;//数量
- @property(copy,nonatomic)UILabel *soufu;//
- @property(copy,nonatomic)UILabel *weikuan;//
- @property(copy,nonatomic)UILabel *zongjia;//总金额
- // [cell assignment:dataArray[indexPath.row]];
- - (void)assignment:(OrderdetailModel*)model;
- @end
|