You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
405 B
27 lines
405 B
// |
|
// CommMessageTableViewCell.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2023/6/7. |
|
// |
|
|
|
#import "ZZTableViewCell.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface CommMessageTableViewCell : ZZTableViewCell |
|
|
|
|
|
@property (nonatomic ,strong) SchModel *schModel; |
|
|
|
|
|
@property (nonatomic ,strong) JobModel *jobModel; |
|
|
|
/// 小红花 |
|
@property (nonatomic ,strong) RedFlowerModel *redModel; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|