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.
36 lines
686 B
36 lines
686 B
// |
|
// HomeHeaderView.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/10/14. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface HomeHeaderView : UIView |
|
|
|
/// 设备信息 |
|
@property (nonatomic ,strong) DeviceModel *devicemodel; |
|
|
|
/// banner图 |
|
@property (nonatomic ,strong) NSArray *bannerArr; |
|
|
|
@property (nonatomic ,strong) LatestLocationModel *laLoModel; |
|
|
|
/// 是否有默认设备 |
|
@property (nonatomic ,assign) BOOL isDev; |
|
|
|
/// 微聊消息未读数 |
|
- (void)GetUnreadTotal; |
|
|
|
/// 班级作业未读条数 |
|
@property (nonatomic ,strong) NSNumber *homeWokeCount; |
|
|
|
/// 小红花未读条数 |
|
@property (nonatomic ,strong) NSNumber *redTotalCount; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|