19 lines
267 B
Objective-C
19 lines
267 B
Objective-C
//
|
|
// HomeBannerModel.m
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2026/2/10.
|
|
//
|
|
|
|
#import "HomeBannerModel.h"
|
|
|
|
@implementation HomeBannerModel
|
|
|
|
+ (NSDictionary *)modelCustomPropertyMapper
|
|
{
|
|
NSDictionary * dic =@{@"banner_id" :@"id"};
|
|
return dic;
|
|
}
|
|
|
|
@end
|