InventoryFrozenOrderListCell.h 459 B

1234567891011121314151617181920
  1. //
  2. // InventoryFrozenOrderListCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/5/13.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "InventoryFreezeOrderListModel.h"
  10. @interface InventoryFrozenOrderListCell : UITableViewCell
  11. @property(nonatomic,assign) CGFloat height;
  12. @property(nonatomic,assign) CGFloat position;
  13. -(void)setInventoryFrozenOrderListCell:(InventoryFreezeOrderListModel*)orderListModel;
  14. @end