ProcurementApplyListCell.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // ProcurementApplyListCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/7/23.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ProcurementApplyListModel.h"
  10. #import "ProcurementDetailDelegate.h"
  11. @interface ProcurementApplyListCell : UITableViewCell
  12. @property(nonatomic,strong) UILabel *lblApplyNo;
  13. @property(nonatomic,strong) UILabel *lblApplyStatus;
  14. @property(nonatomic,strong) UILabel *lblOrderNo;
  15. @property(nonatomic,strong) UILabel *lblCustomerCode;
  16. @property(nonatomic,strong) UILabel *lblCustomerName;
  17. @property(nonatomic,strong) UILabel *lblAccountDate;
  18. @property(nonatomic,strong) UILabel *lblArrivalDate;
  19. @property(nonatomic,strong) UILabel *lblApplyDepartment;
  20. @property(nonatomic,strong) UILabel *lblApplicant;
  21. @property(nonatomic,assign) int position;
  22. @property(nonatomic,weak) id<ProcurementDetailDelegate> delegate;
  23. @property(nonatomic,strong) UIButton *btnProcurementDetail;
  24. @property(nonatomic,strong) ProcurementApplyListModel *applyListModel;
  25. -(void)setProcurementApplyListCell:(ProcurementApplyListModel*)procurementModel;
  26. @end