SPSBQueryCityModel.h 900 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // SPSBQueryCityModel.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/5/19.
  6. //
  7. #import "SPSBBaseNetworkModel.h"
  8. //cid, city_name, shebao_url, shebao_wx, shebao_tel, fund_url, fund_wx, fund_tel, pinyin, pinyin_abbreviation
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SPSBQueryCityModel : SPSBBaseNetworkModel
  11. @property (nonatomic, strong) NSString *spsb_cid;
  12. @property (nonatomic, strong) NSString *spsb_city_name;
  13. @property (nonatomic, strong) NSString *spsb_shebao_url;
  14. @property (nonatomic, strong) NSString *spsb_shebao_wx;
  15. @property (nonatomic, strong) NSString *spsb_shebao_tel;
  16. @property (nonatomic, strong) NSString *spsb_fund_url;
  17. @property (nonatomic, strong) NSString *spsb_fund_wx;
  18. @property (nonatomic, strong) NSString *spsb_fund_tel;
  19. @property (nonatomic, strong) NSString *spsb_pinyin;
  20. @property (nonatomic, strong) NSString *spsb_pinyin_abbreviation;
  21. @end
  22. NS_ASSUME_NONNULL_END