| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SalesInStorageListCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/23.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SalesInStorageDelegate.h"
- @interface SalesInStorageListCell : UITableViewCell
- @property(nonatomic,strong) OtherInStorageListModel *inStorageListModel;
- @property(nonatomic,strong) UILabel *lblInStorageNo;
- @property(nonatomic,strong) UILabel *lblInStorageStatus;
- @property (nonatomic, strong) UIView *topSeparatorView;
- @property(nonatomic,strong) UILabel *lblCustomerName;
- @property(nonatomic,strong) UILabel *lblSupplier;
- @property(nonatomic,strong) UILabel *lblCustomerCode;
- @property(nonatomic,strong) UILabel *lblStaff;
- @property(nonatomic,strong) UILabel *lblBusinessDepartment;
- @property(nonatomic,strong) UILabel *lblCreater;
- @property(nonatomic,strong) UILabel *lblAccountDate;
- @property(nonatomic,strong) UILabel *lblCustomerAddress;
- @property(nonatomic,strong) UILabel *lblGoodsQuantity;
- @property (nonatomic, strong) UIView *middleSeparatorView;
- @property(nonatomic,strong) UIButton *btnGoodsDetail;
- @property(nonatomic,strong) UIButton *btnCorrect;
- @property(nonatomic,assign) NSInteger index;
- @property (nonatomic, strong) UIView *bottomSeparatorView;
- @property(nonatomic,weak) id<SalesInStorageDelegate> inStorageDelegate;
- -(void)setSalesInStorageListModel:(OtherInStorageListModel*)inStorageModel;
- @end
|