MGShopTableCell.h 626 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MGShopTableCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/7/17.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGShopListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MGShopTableCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *shopImgView;
  13. @property (weak, nonatomic) IBOutlet UILabel *shopNameL;
  14. @property (weak, nonatomic) IBOutlet UILabel *shopNumL;
  15. @property (weak, nonatomic) IBOutlet UIButton *shopBtn;
  16. @property(nonatomic, strong) MGShopListModel *model;
  17. -(void)resetViewWithModel:(MGShopListModel *)model;
  18. @end
  19. NS_ASSUME_NONNULL_END