| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // PromotionOrderListCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/9/8.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PromotionOrderModel.h"
- @interface PromotionOrderListCell : UITableViewCell
- @property(nonatomic,strong) UILabel *promotionStrategyNameLbl;
- @property(nonatomic,strong) UILabel *promotionNameLbl;
- @property(nonatomic,strong) UILabel *promotionTypeLbl;
- @property(nonatomic,strong) UILabel *promotionPriceLbl;
- @property(nonatomic,strong) UILabel *addAmountLbl;
- @property(nonatomic,strong) UILabel *reachAmountLbl;
- @property(nonatomic,strong) UILabel *reachAmountFlagLbl;
- @property(nonatomic,strong) UILabel *reachDiscountLbl;
- @property(nonatomic,strong) UILabel *reachDiscountFlagLbl;
- @property(nonatomic,strong) UILabel *giftAmountLbl;
- @property(nonatomic,strong) UILabel *giftDiscountLbl;
- @property(nonatomic,strong) UILabel *giftGoodsNumberLbl;
- @property(nonatomic,strong) UILabel *auditFlagLbl;
- @property(nonatomic,strong) UILabel *remarksLbl;
- @property(nonatomic,strong) PromotionOrderModel *promotionOrderModel;
- -(void)setPromotionOrderCell:(PromotionOrderModel*)orderModel;
- @end
|