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.
33 lines
516 B
33 lines
516 B
// |
|
// BannerModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/11/16. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface BannerModel : BaseModel |
|
|
|
/// 首页banner图片url |
|
@property (nonatomic ,copy) NSString *banner; |
|
|
|
/// 排序号 |
|
@property (nonatomic ,assign) NSInteger homeOrder; |
|
|
|
/// id |
|
@property (nonatomic ,assign) NSInteger Id; |
|
|
|
/// 图片跳转链接 |
|
@property (nonatomic ,copy) NSString *link; |
|
|
|
/// 图片标题 |
|
@property (nonatomic ,copy) NSString *title; |
|
|
|
|
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|