| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // DeliveryRequirementDetailListCellTableViewCell.h
- // IBOSSHSH
- //
- // Created by ssl on 2018/1/16.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DispatchRequirementDetailListCell : UITableViewCell
- @property (retain,nonatomic) IBOutlet UILabel *brandName;
- @property (retain,nonatomic) IBOutlet UILabel *seriesName;
- @property (retain,nonatomic) IBOutlet UILabel *package;
- @property (retain,nonatomic) IBOutlet UILabel *acreage;
- @property (retain,nonatomic) IBOutlet UILabel *sourceFromName;
- @property (retain,nonatomic) IBOutlet UILabel *installationReceiptFlag;
- @property (strong, nonatomic) IBOutlet UILabel *lblUnit;
- @property (strong, nonatomic) IBOutlet UILabel *lblDispatchType;
- @property (retain,nonatomic) IBOutlet UILabel *deliveryQuantity;
- @property (strong, nonatomic) IBOutlet UILabel *sourceNo;
- @property (retain,nonatomic) IBOutlet UILabel *gradeName;
- @property (retain,nonatomic) IBOutlet UILabel *weight;
- @property (retain,nonatomic) IBOutlet UILabel *installationReceiptType;
- @property (retain,nonatomic) IBOutlet UILabel *warehouseName;
- @property (retain,nonatomic) IBOutlet UILabel *code;
- @property (retain,nonatomic) IBOutlet UILabel *kindName;
- @property (retain,nonatomic) IBOutlet UILabel *colorNumber;
- @property (retain,nonatomic) IBOutlet UILabel *installationQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *installationReceiptQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *returnQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *onlyCode;
- @property (retain,nonatomic) IBOutlet UILabel *positionNumber;
- @property (retain,nonatomic) IBOutlet UILabel *varietyName;
- @property (retain,nonatomic) IBOutlet UILabel *deliveryReceiptType;
- @property (retain,nonatomic) IBOutlet UILabel *outQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *recoverQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *deliveryReceiptQuantity;
- @property (retain,nonatomic) IBOutlet UILabel *deliveryReceiptFlag;
- @property (retain,nonatomic) IBOutlet UILabel *remarks;
- @property (retain,nonatomic) IBOutlet UILabel *goodsName;
- @property (retain,nonatomic) IBOutlet UILabel *circulateType;
- @property (retain,nonatomic) IBOutlet UILabel *specification;
- @end
|