| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- // CustomerReceiptDetailCell
- // IOBSS 2.0
- //
- // Created by 刘瀚璘 on 2017.7.18
- // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 系统名称:
- // 功能描述:定制品详细Cell
- #import <UIKit/UIKit.h>
- #import "ReceiptDetailModel.h"
- @interface CustomerReceiptDetailCell : UITableViewCell
- /**
- 圆角布局
- */
- @property (weak,nonatomic) IBOutlet UIView *content;
- /**
- 商品编码
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblCommodityCode;
- /**
- 唯一编码
- */
- @property (weak,nonatomic) IBOutlet UILabel *onlyCode;
- /**
- 商品品牌
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblBrandName;
- /**
- 商品种类
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblKindName;
- /**
- 商品品种
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblVarietyName;
- /**
- 系列
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblSeriesName;
- /**
- 单位
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblUnitName;
- /**
- 包装
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblPackage;
- /**
- 重量
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblWeight;
- /**
- 面积
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblAcreage;
- /**
- 名称
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblGoodsName;
- /**
- 属性
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblExpandAttribute;
- /**
- 属性2
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblExpandAttribute2;
- /**
- 规格
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblSpecification;
- /**
- 备注
- */
- @property (weak,nonatomic) IBOutlet UILabel *lblRemark;
- /**
- 相机
- */
- @property (strong,nonatomic) ReceiptDetailModel *model;
- /**
- 高度
- */
- @property (nonatomic,assign) CGFloat cellHeight;
- /**
- 刷新页面
- */
- - (void) loadCell;
- @end
|