ProcurementApplyListDetailCell.h 930 B

1234567891011121314151617181920212223242526
  1. //
  2. // ProcurementApplyListDetailCell.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2018/7/24.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ProcurementApplyListDetailModel.h"
  10. @interface ProcurementApplyListDetailCell : UITableViewCell
  11. @property(nonatomic,strong) UILabel *lblOrderNo;
  12. @property(nonatomic,strong) UILabel *lblCode;
  13. @property(nonatomic,strong) UILabel *lblOnlyCode;
  14. @property(nonatomic,strong) UILabel *lblSpecification;
  15. @property(nonatomic,strong) UILabel *lblGrade;
  16. @property(nonatomic,strong) UILabel *lblApplyDepartment;
  17. @property(nonatomic,strong) UILabel *lblProcurementQuantity;
  18. @property(nonatomic,strong) UIView *middleSeparator;
  19. @property(nonatomic,readonly) CGFloat height;
  20. @property(nonatomic,strong) ProcurementApplyListDetailModel *procurementDetailModel;
  21. -(void)setProcurementApplyListDetailCell:(ProcurementApplyListDetailModel*)detailModel;
  22. @end