| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // ProcurementApplyListCell.h
- // IBOSS
- //
- // Created by guan hong hou on 2018/7/23.
- // Copyright © 2018年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ProcurementApplyListModel.h"
- #import "ProcurementDetailDelegate.h"
- @interface ProcurementApplyListCell : UITableViewCell
- @property(nonatomic,strong) UILabel *lblApplyNo;
- @property(nonatomic,strong) UILabel *lblApplyStatus;
- @property(nonatomic,strong) UILabel *lblOrderNo;
- @property(nonatomic,strong) UILabel *lblCustomerCode;
- @property(nonatomic,strong) UILabel *lblCustomerName;
- @property(nonatomic,strong) UILabel *lblAccountDate;
- @property(nonatomic,strong) UILabel *lblArrivalDate;
- @property(nonatomic,strong) UILabel *lblApplyDepartment;
- @property(nonatomic,strong) UILabel *lblApplicant;
- @property(nonatomic,assign) int position;
- @property(nonatomic,weak) id<ProcurementDetailDelegate> delegate;
- @property(nonatomic,strong) UIButton *btnProcurementDetail;
- @property(nonatomic,strong) ProcurementApplyListModel *applyListModel;
- -(void)setProcurementApplyListCell:(ProcurementApplyListModel*)procurementModel;
- @end
|