| 123456789101112131415161718192021222324252627282930313233 |
- //
- // SalesSlipGoodsListCell.h
- // IBOSSmini
- //
- // Created by ssl on 2018/1/29.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesSlipGoodsListModel.h"
- #import "UIColor+hexColor.h"
- @interface SalesSlipGoodsListCell : UITableViewCell
- @property (nonatomic, strong) UILabel *orderNoLbl;
- @property (nonatomic, strong) UIView *topSeparator;
- @property (nonatomic, strong) UILabel *goodsNameLbl;
- @property (nonatomic, strong) UIView *middleSeparator;
- @property (nonatomic, strong) UILabel *goodsCodeLbl;
- @property (nonatomic, strong) UILabel *onlyCodeLbl;
- @property (nonatomic, strong) UILabel *orderPriceLbl;
- @property (nonatomic, strong) UILabel *orderQuantityLbl;
- @property (nonatomic, strong) UILabel *specificationLbl;
- @property (nonatomic, strong) UILabel *colorNumberLbl;
- @property (nonatomic, strong) UILabel *brandNameLbl;
- @property (nonatomic, strong) UIView *bottomSeparator;
- @property(nonatomic) BOOL isSelect;//购物车选中标识
- @property(assign) NSInteger position;
- @property(nonatomic,strong)SalesSlipGoodsListModel * salesOrderGoodsListModel;
- - (void)setSalesGoodsOrder:(SalesSlipGoodsListModel *)salesOrder orderStatus:(NSUInteger)status;
- @end
|