QBCell.h 785 B

1234567891011121314151617181920212223242526
  1. //
  2. // QBCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2018/8/10.
  6. // Copyright © 2018年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "QBorderlistModel.h"
  10. @interface QBCell : UITableViewCell
  11. @property(copy,nonatomic)UIImageView *image;//
  12. @property(copy,nonatomic)UILabel *gongsilabel;//
  13. @property(copy,nonatomic)UILabel *Orderstatus;//
  14. @property(copy,nonatomic)UIImageView *Commodityimage;//
  15. @property(copy,nonatomic)UILabel *Commodityname;//
  16. @property(copy,nonatomic)UILabel *Commodityjiage;//
  17. @property(copy,nonatomic)UILabel *Commoditynumber;//
  18. @property(copy,nonatomic)UIButton *pingjia;//
  19. @property(copy,nonatomic)UILabel *jiage;//
  20. @property(copy,nonatomic)UILabel *shuliang;//
  21. - (void)assignment:(QBorderlistModel *)model type:(NSString *)type;
  22. @end