| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SalesOutStorageGoodsListCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/17.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesOutStorageSalesSlipGoodsListModel.h"
- @interface SalesOutStorageGoodsListCell : UITableViewCell
- @property(nonatomic,strong) UILabel *lblSalesNo;
- @property(nonatomic,strong) UIView *topSeparator;
- @property(nonatomic,strong) UIButton *btnCheck;
- @property(nonatomic,strong) UILabel *lblGoodsName;
- @property(nonatomic,strong) UIView *middleSeparator1;
- @property(nonatomic,strong) UIView *middleSeparator2;
- @property(nonatomic,strong) UILabel *lblGoodsCode;
- @property(nonatomic,strong) UILabel *lblOnlyCode;
- @property(nonatomic,strong) UILabel *lblSalesPrice;
- @property(nonatomic,strong) UILabel *lblSalesQuantity;
- @property(nonatomic,strong) UILabel *lblSpecification;
- @property(nonatomic,strong) UILabel *lblColorNumber;
- @property(nonatomic,strong) UILabel *lblBrand;
- @property(nonatomic,strong) UIButton *btnMoreInfo;
- @property(nonatomic,strong) UIView *bottomSeparator;
- @property(nonatomic,weak) id<SalesOutStorageDelegate> checkDelegate;
- @property(nonatomic,assign) NSInteger cellIndex;
- @property(nonatomic,strong) SalesOutStorageSalesSlipGoodsListModel *goodsListModel;
- - (void)setSalesOutStorageGoodsListModel:(SalesOutStorageSalesSlipGoodsListModel *)salesOutStorageGoodsListModel;
- - (void) setCheckBackground: (BOOL) checked;
- @end
|