PromotionOrderListCell.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // PromotionOrderListCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/9/8.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PromotionOrderModel.h"
  10. @interface PromotionOrderListCell : UITableViewCell
  11. @property(nonatomic,strong) UILabel *promotionStrategyNameLbl;
  12. @property(nonatomic,strong) UILabel *promotionNameLbl;
  13. @property(nonatomic,strong) UILabel *promotionTypeLbl;
  14. @property(nonatomic,strong) UILabel *promotionPriceLbl;
  15. @property(nonatomic,strong) UILabel *addAmountLbl;
  16. @property(nonatomic,strong) UILabel *reachAmountLbl;
  17. @property(nonatomic,strong) UILabel *reachAmountFlagLbl;
  18. @property(nonatomic,strong) UILabel *reachDiscountLbl;
  19. @property(nonatomic,strong) UILabel *reachDiscountFlagLbl;
  20. @property(nonatomic,strong) UILabel *giftAmountLbl;
  21. @property(nonatomic,strong) UILabel *giftDiscountLbl;
  22. @property(nonatomic,strong) UILabel *giftGoodsNumberLbl;
  23. @property(nonatomic,strong) UILabel *auditFlagLbl;
  24. @property(nonatomic,strong) UILabel *remarksLbl;
  25. @property(nonatomic,strong) PromotionOrderModel *promotionOrderModel;
  26. -(void)setPromotionOrderCell:(PromotionOrderModel*)orderModel;
  27. @end