| 1234567891011121314151617181920212223242526 |
- //
- // ProcurementApplyListDetailCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/7/24.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ProcurementApplyListDetailModel.h"
- @interface ProcurementApplyListDetailCell : UITableViewCell
- @property(nonatomic,strong) UILabel *lblOrderNo;
- @property(nonatomic,strong) UILabel *lblCode;
- @property(nonatomic,strong) UILabel *lblOnlyCode;
- @property(nonatomic,strong) UILabel *lblSpecification;
- @property(nonatomic,strong) UILabel *lblGrade;
- @property(nonatomic,strong) UILabel *lblApplyDepartment;
- @property(nonatomic,strong) UILabel *lblProcurementQuantity;
- @property(nonatomic,strong) UIView *middleSeparator;
- @property(nonatomic,readonly) CGFloat height;
- @property(nonatomic,strong) ProcurementApplyListDetailModel *procurementDetailModel;
- -(void)setProcurementApplyListDetailCell:(ProcurementApplyListDetailModel*)detailModel;
- @end
|