| 12345678910111213141516171819202122232425262728293031 |
- //
- // OrderDetailTableViewCell.h
- // IBOSSmini
- //
- // Created by guan hong hou on 2017/5/25.
- // Copyright © 2017年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ShopCartItemModel.h"
- @interface OrderDetailTableViewCell : UITableViewCell
- @property(strong) UILabel * lblSalesQuantity;//销售数量
- @property(strong) UILabel * lblSalesPrice;//售价
- //@property(strong) UILabel * lblRemarks;//备注
- @property(strong) UILabel * lblMarkedPrice;//标价
- @property(strong) UILabel * lblSpecification;//规格
- @property(strong) UILabel * lblAcreage;//面积
- @property(strong) UILabel * lblVolume;//体积
- @property(strong) UILabel * lblCode;//编码
- @property(strong) UILabel * lblOnlyCode;//唯一编码
- @property(strong) UILabel * lblColorNumber;//色号
- @property(strong) UILabel * lblPositionNumber;//仓位号
- @property(strong) UILabel * lblWarehouseName;//库区
- @property(strong) UILabel * lblBrandName;//品牌
- @property(strong) UILabel * lblKindName;//商品种类
- @property(strong) UILabel * lblVarietyName;//商品品种
- @property(strong) UILabel* lblSeriesName;//系列
- @property(strong) UILabel * lblUnitName;//单位
- -(void)parseOrderInfo:(ShopCartItemModel *)orderItem;
- @end
|