| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- //
- // DeliveryListDetailCell.h
- // IBOSS
- //
- // Created by Dongke on 16/1/12.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:回执明细列表单元格
- #import <UIKit/UIKit.h>
- #import "DeliveryListDetailModel.h"
- @interface DeliveryListDetailCell : UITableViewCell
- /**
- 明细id
- */
- @property (strong,nonatomic) IBOutlet UILabel *detailId;
- /**
- 配送id
- */
- @property (strong,nonatomic) IBOutlet UILabel *deliveryId;
- /**
- 来源类型
- */
- @property (strong,nonatomic) IBOutlet UILabel *sourceFromName;
- /**
- 单据号
- */
- @property (strong,nonatomic) IBOutlet UILabel *invoiceNo;
- /**
- 单据id
- */
- @property (strong,nonatomic) IBOutlet UILabel *invoiceId;
- /**
- 单据细节id
- */
- @property (strong,nonatomic) IBOutlet UILabel *invoiceDetailId;
- /**
- 送货数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *deliveryQuantity;
- /**
- 出库数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *outQuantity;
- /**
- 回执数量
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptQuantity;
- /**
- 回执备注
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptRemarks;
- /**
- 回执类型
- */
- @property (strong,nonatomic) IBOutlet UILabel *receiptType;
- /**
- 产品编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *code;
- /**
- 唯一编码
- */
- @property (strong,nonatomic) IBOutlet UILabel *onlyCode;
- /**
- 商品名称
- */
- @property (strong,nonatomic) IBOutlet UILabel *goodsName;
- /**
- 扩展属性
- */
- @property (strong,nonatomic) IBOutlet UILabel *expandAttribute;
- /**
- 品牌
- */
- @property (strong,nonatomic) IBOutlet UILabel *brandName;
- /**
- 种类
- */
- @property (strong,nonatomic) IBOutlet UILabel *kindName;
- /**
- 品种
- */
- @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 *gradeName;
- /**
- 规格
- */
- @property (strong,nonatomic) IBOutlet UILabel *specification;
- /**
- 色号
- */
- @property (strong,nonatomic) IBOutlet UILabel *colorNumber;
- /**
- 库区
- */
- @property (strong,nonatomic) IBOutlet UILabel *warehouseName;
- /**
- 仓位号
- */
- @property (strong,nonatomic) IBOutlet UILabel *positionNumber;
- /**
- 是否委外
- */
- @property (strong,nonatomic) IBOutlet UILabel *salesDetailType;
- @end
|