PhoneP2PModel.m 381 B

1234567891011121314151617181920212223
  1. //
  2. // CloudPhoneAuthModel.m
  3. // VclustersGemini
  4. //
  5. // Created by APPLE on 2020/10/9.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import "PhoneP2PModel.h"
  9. @implementation PhoneP2PModel
  10. +(NSArray *)bg_unionPrimaryKeys{
  11. return @[@"phoneId"];
  12. }
  13. +(JSONKeyMapper *)keyMapper{
  14. return [[JSONKeyMapper alloc]initWithDictionary:@{@"userCardId":@"phoneId"}];
  15. }
  16. @end