PurchaseintentionCell.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // PurchaseintentionCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/9.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PurchaseintentionModel.h"
  10. @protocol PurchaseintentionDelegate <NSObject>//协议
  11. - (void)transButIndex:(UIButton*)button;//协议方法
  12. @end
  13. @interface PurchaseintentionCell : UITableViewCell
  14. @property(copy,nonatomic)UILabel *title;//标题
  15. @property(copy,nonatomic)UILabel *state;//状态
  16. @property(copy,nonatomic)UILabel *ordernumber;//订单状态
  17. @property(copy,nonatomic)UILabel *time;//时间
  18. @property(copy,nonatomic)UILabel *content;//订单标题1
  19. @property(copy,nonatomic)UILabel *content1;//订单标题2
  20. @property(copy,nonatomic)UILabel *content2;//订单标题3
  21. @property(copy,nonatomic)UIButton *cancelintention;
  22. @property(copy,nonatomic)UIButton *cancelintention1111;
  23. @property(copy,nonatomic)UILabel *jiage;
  24. @property (nonatomic, assign) id<PurchaseintentionDelegate>delegate;//代理属性
  25. - (void)assignment:(PurchaseintentionModel *)model commoditysModel:(NSArray *)arr;
  26. @end