20 lines
345 B
C
20 lines
345 B
C
|
|
//
|
||
|
|
// BottleViewController.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by mambaxie on 2022/4/27.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "PYBaseViewController.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface BottleViewController : PYBaseViewController
|
||
|
|
|
||
|
|
@property (nonatomic, strong) UICollectionView *collectionView;
|
||
|
|
- (void)refreshHomeBottleData;
|
||
|
|
- (void)getBottle;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|