12345678910111213141516171819202122232425262728293031 |
- //
- // SPSBQueryCityModel.h
- // 我的社保
- //
- // Created by shanp on 2021/5/19.
- //
- #import "SPSBBaseNetworkModel.h"
- //cid, city_name, shebao_url, shebao_wx, shebao_tel, fund_url, fund_wx, fund_tel, pinyin, pinyin_abbreviation
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBQueryCityModel : SPSBBaseNetworkModel
- @property (nonatomic, strong) NSString *spsb_cid;
- @property (nonatomic, strong) NSString *spsb_city_name;
- @property (nonatomic, strong) NSString *spsb_shebao_url;
- @property (nonatomic, strong) NSString *spsb_shebao_wx;
- @property (nonatomic, strong) NSString *spsb_shebao_tel;
- @property (nonatomic, strong) NSString *spsb_fund_url;
- @property (nonatomic, strong) NSString *spsb_fund_wx;
- @property (nonatomic, strong) NSString *spsb_fund_tel;
- @property (nonatomic, strong) NSString *spsb_pinyin;
- @property (nonatomic, strong) NSString *spsb_pinyin_abbreviation;
- @end
- NS_ASSUME_NONNULL_END
|