17 lines
278 B
Objective-C
17 lines
278 B
Objective-C
//
|
|
// KBConsumptionRecordCell.h
|
|
// keyBoard
|
|
//
|
|
|
|
#import "BaseCell.h"
|
|
@class KBConsumptionRecord;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KBConsumptionRecordCell : BaseCell
|
|
+ (NSString *)reuseId;
|
|
- (void)configWithRecord:(KBConsumptionRecord *)record;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|