YMCallRecordModel.m 406 B

123456789101112131415161718192021
  1. //
  2. // YMCallRecordModel.m
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/20.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMCallRecordModel.h"
  9. @implementation YMCallRecordModel
  10. + (NSDictionary *)modelCustomPropertyMapper {
  11. return @{@"call_record_id":@"id",};
  12. }
  13. + (NSDictionary *)modelContainerPropertyGenericClass {
  14. return @{
  15. @"grade":[YMGrGradeModel class]
  16. };
  17. }
  18. @end