BogoChoiceAreaModel.m 320 B

1234567891011121314151617
  1. //
  2. // BogoChoiceAreaModel.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/25.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoChoiceAreaModel.h"
  9. @implementation BogoChoiceAreaModel
  10. -(NSString *)area_code
  11. {
  12. return [_area_code stringByReplacingOccurrencesOfString:@"+" withString:@""];
  13. }
  14. @end