| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- //
- // RepairReceiptDetailCell.h
- // IBOSS
- //
- // Created by apple on 16/1/19.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- //功能描述: 维修回执明细单元格类
- #import <UIKit/UIKit.h>
- #import "RepairReceiptDetailModel.h"
- @interface RepairReceiptDetailCell : UITableViewCell
- /**
- 销售单号
- */
- @property (strong,nonatomic) IBOutlet UILabel *saleNo;
- /**
- 维修数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *repairQuantity;
- /**
- 回执备注
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptRemark;
- /**
- 回执数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptQuantity;
- /**
- 完成数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *completedQuantity;
- /**
- 规格
- */
- @property (strong,nonatomic) IBOutlet UILabel *specification;
- /**
- 色号
- */
- @property (strong,nonatomic) IBOutlet UILabel *colorName;
- /**
- 保修日期
- */
- @property (strong,nonatomic) IBOutlet UILabel *warrantyDate;
- /**
- 备注
- */
- @property (strong,nonatomic) IBOutlet UILabel *remark;
- /**
- 商品名称
- */
- @property (strong,nonatomic) IBOutlet UILabel *goodsName;
- /**
- 回执类型
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptType;
- /**
- 编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *code;
- /**
- 唯一编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
- /**
- 商品类型
- */
- @property (strong,nonatomic) IBOutlet UILabel *varietyName;
- /**
- 品牌
- */
- @property (strong,nonatomic) IBOutlet UILabel *brandName;
- /**
- 系列
- */
- @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;
- /**
- 设置维修明细数据
- @param dicInfo <#dicInfo description#>
- */
- - (void)setRepairReceiptDetailInfo:(RepairReceiptDetailModel *)model;
- @end
|