27 lines
469 B
C
27 lines
469 B
C
|
|
//
|
||
|
|
// SPTrendReportCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/17.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPTrendReportCell : UICollectionViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *selBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *reasonLab;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
@interface SPTrendReportModel : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, copy) NSString *id;
|
||
|
|
@property (nonatomic, copy) NSString *type_name;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|