22 lines
392 B
Objective-C
Executable File
22 lines
392 B
Objective-C
Executable File
//
|
|
// SPGonghuiListVC.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/29.
|
|
//
|
|
|
|
#import "BaseTableViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPGonghuiListVC : BaseTableViewController <JXCategoryListContentViewDelegate>
|
|
|
|
//1总排行 2本周 3上周
|
|
@property (nonatomic, assign) NSInteger dateType;
|
|
|
|
@property (nonatomic, copy) NSString *keywords;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|