| 1234567891011121314151617181920212223242526 |
- //
- // QBCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/8/10.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "QBorderlistModel.h"
- @interface QBCell : UITableViewCell
- @property(copy,nonatomic)UIImageView *image;//
- @property(copy,nonatomic)UILabel *gongsilabel;//
- @property(copy,nonatomic)UILabel *Orderstatus;//
- @property(copy,nonatomic)UIImageView *Commodityimage;//
- @property(copy,nonatomic)UILabel *Commodityname;//
- @property(copy,nonatomic)UILabel *Commodityjiage;//
- @property(copy,nonatomic)UILabel *Commoditynumber;//
- @property(copy,nonatomic)UIButton *pingjia;//
- @property(copy,nonatomic)UILabel *jiage;//
- @property(copy,nonatomic)UILabel *shuliang;//
- - (void)assignment:(QBorderlistModel *)model type:(NSString *)type;
- @end
|