123456789101112131415161718192021 |
- //
- // YMAdvertModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/23.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMAdvertModel.h"
- @implementation YMAdvertModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"Id":@"id",};
- }
- - (NSString *)tag {
- return [NSString stringWithFormat:@"%@_%@",self.title, self.content];
- }
- @end
|