| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- //
- // InstallReceiptDetailCell.h
- // IBOSS
- //
- // Created by apple on 16/1/11.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:安装回执明细单元格类
- #import <UIKit/UIKit.h>
- #import "InstallReceiptDetailModel.h"
- @interface InstallReceiptDetailCell : UITableViewCell
- /**
- 销售单号
- */
- @property (strong,nonatomic) IBOutlet UILabel *saleNo;
- /**
- 安装数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *installQuantity;
- /**
- 回执备注
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptRemark;
- /**
- 回执数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptQuantity;
- /**
- 回执类型
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptType;
- /**
- 产品编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *code;
- /**
- 唯一编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
- /**
- 种类
- */
- @property (strong,nonatomic) IBOutlet UILabel *kindName;
- /**
- 品牌
- */
- @property (strong,nonatomic) IBOutlet UILabel *brandName;
- /**
- 品种
- */
- @property (strong,nonatomic) IBOutlet UILabel *varietyName;
- /**
- 系列
- */
- @property (strong,nonatomic) IBOutlet UILabel *seriesName;
- /**
- 单位
- */
- @property (strong,nonatomic) IBOutlet UILabel *unitName;
- /**
- 包
- */
- @property (strong,nonatomic) IBOutlet UILabel *package;
- /**
- 重量
- */
- @property (strong,nonatomic) IBOutlet UILabel *weight;
- /**
- 面积
- */
- @property (strong,nonatomic) IBOutlet UILabel *acreage;
- /**
- 箱
- */
- @property (strong,nonatomic) IBOutlet UILabel *box;
- /**
- 片
- */
- @property (strong,nonatomic) IBOutlet UILabel *piece;
- /**
- 平米
- */
- @property (strong,nonatomic) IBOutlet UILabel *mm;
- /**
- 其他联系人
- */
- @property (strong,nonatomic) IBOutlet UILabel *otherContact;
- /**
- 扩展属性
- */
- @property (strong,nonatomic) IBOutlet UILabel *expandAttribute;
- /**
- 扩展属性2
- */
- @property (strong,nonatomic) IBOutlet UILabel *expandAttributeTwo;
- /**
- 设置cell数据
- @param dicInfo <#dicInfo description#>
- */
- - (void)setInstallReceiptDetailInfo:(InstallReceiptDetailModel *)model;
- @end
|