| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // SalesInStorageListDetailCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2018/4/23.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SalesInStorageListDetailCell : UITableViewCell
- @property(nonatomic,strong) UILabel *lblInStorageNo;
- @property(nonatomic,strong) UIView *topSeparator;
- @property(nonatomic,strong) UILabel *lblOnlyCode;
- @property(nonatomic,strong) UILabel *lblGoodsCode;
- @property(nonatomic,strong) UILabel *lblBrand;
- @property(nonatomic,strong) UILabel *lblKind;
- @property(nonatomic,strong) UILabel *lblVariety;
- @property(nonatomic,strong) UILabel *lblSeries;
- @property(nonatomic,strong) UILabel *lblSpecification;
- @property(nonatomic,strong) UILabel *lblGrade;
- @property(nonatomic,strong) UILabel *lblColorNumber;
- @property(nonatomic,strong) UILabel *lblWarehouseName;
- @property(nonatomic,strong) UILabel *lblPositionNumber;
- @property(nonatomic,strong) UILabel *lblInStorageQuantity;
- @property(nonatomic,strong) UILabel *lblBox;
- @property(nonatomic,strong) UILabel *lblPiece;
- @property(nonatomic,strong) UILabel *lblInStorageAcreage;
- @property(nonatomic,strong) UILabel *lblInStoragePrice;
- @property(nonatomic,strong) UILabel *lblAcountDate;
- @property(nonatomic,strong) UILabel *lblPackage;
- @property(nonatomic,strong) UILabel *lblUnit;
- @property(nonatomic,strong) UILabel *lblCirculateType;
- @property(nonatomic,strong) UILabel *lblWeight;
- @property(nonatomic,strong) UILabel *lblAcreage;
- @property(nonatomic,strong) UILabel *lblVolume;
- @property(nonatomic,strong) UILabel *lblGoodsName;
- @property(nonatomic,strong) UILabel *lblExpandAtrribute;
- @property(nonatomic,strong) UILabel *lblExpandAtrribute2;
- @property(nonatomic,strong) UILabel *lblGoodsRemarks;
- @property(nonatomic,strong) UILabel *lblRemarks;
- @property(nonatomic,strong) UIView *bottomSeparator;
- @property(nonatomic,strong) OtherInStorageGoodsListDetailModel *inStorageDetailListModel;
- -(void)setSalesInStorageListDetailModel:(OtherInStorageGoodsListDetailModel*)inStorageDetailModel;
- @end
|