YMAdvertModel.m 362 B

123456789101112131415161718192021
  1. //
  2. // YMAdvertModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/23.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMAdvertModel.h"
  9. @implementation YMAdvertModel
  10. + (NSDictionary *)modelCustomPropertyMapper {
  11. return @{@"Id":@"id",};
  12. }
  13. - (NSString *)tag {
  14. return [NSString stringWithFormat:@"%@_%@",self.title, self.content];
  15. }
  16. @end