123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- //
- // SPSBShebaoData.h
- // 我的社保
- //
- // Created by shanp on 2021/4/22.
- //
- #import "SPSBBaseNetworkModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBFlowModel : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) NSString *spsb_flow_charge;//流水服务费
- @property (nonatomic, readonly, strong) NSString *spsb_flow_force;//是否强制交流水
- @property (nonatomic, readonly, strong) NSString *spsb_flow_end;//流水上限
- @property (nonatomic, readonly, strong) NSString *spsb_flow_fee;//流水下限
- @property (nonatomic, readonly, strong) NSString *spsb_flow_flag;//是否需要流水
- @property (nonatomic, readonly, strong) NSString *spsb_remark;//流水提示
- @end
- @interface SPSBFundsItemModel : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) NSString *spsb_e;//2
- @property (nonatomic, readonly, strong) NSString *spsb_hukou_type;
- @property (nonatomic, readonly, strong) NSString *spsb_max;//1
- @property (nonatomic, readonly, strong) NSString *spsb_min;//0
- @property (nonatomic, readonly, strong) NSString *spsb_p;//3
- @end
- @interface SPSBShebaos : SPSBBaseNetworkModel
- @property (nonatomic, readwrite, strong) NSString *spsb_i;//排序用
- @property (nonatomic, readwrite, strong) NSString *spsb_n;//名称
- @property (nonatomic, readwrite, strong) NSString *spsb_p;//价格
- @end
- @interface SPSBShebaosModel : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) NSArray<SPSBShebaos *> *spsb_data;
- @property (nonatomic, readonly, strong) NSString *spsb_hukou_type;
- @end
- @interface SPSBShebaoData : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) NSString *spsb_fund_charge;
- @property (nonatomic, readonly, strong) NSString *spsb_shebao_charge;
- @property (nonatomic, readonly, strong) NSString *spsb_shebao_card_charge;
- @property (nonatomic, readonly, strong) NSString *spsb_added_charge;//补缴服务费
- @property (nonatomic, readonly, strong) NSString *spsb_package_charge;
- @property (nonatomic, readonly, strong) NSString *spsb_shebao_type;
- @property (nonatomic, readonly, strong) NSString *spsb_city_code;
- @property (nonatomic, readonly, strong) NSString *spsb_id;
- @property (nonatomic, readonly, strong) NSString *spsb_inc_date;//截止日期
- @property (nonatomic, readonly, strong) NSString *spsb_nums;//最少月数
- @property (nonatomic, readonly, strong) NSString *spsb_month;//开始月份
- @property (nonatomic, readonly, strong) NSString *spsb_pack;
- @property (nonatomic, readonly, strong) NSString *spsb_fund_buy;
- @property (nonatomic, readonly, strong) NSString *spsb_fund_buy2;//是否开放公积金购买
- @property (nonatomic, readonly, strong) NSString *spsb_shebao_note;//补缴说明
- @property (nonatomic, readonly, strong) NSString *spsb_fund_note;//补缴说明
- @property (nonatomic, readonly, strong) NSString *spsb_shebao_desc;//正常购买说明
- @property (nonatomic, readonly, strong) NSString *spsb_fund_desc;//正常购买说明
- @property (nonatomic, readonly, strong) NSString *spsb_addeds_num;//社保可补缴月数
- @property (nonatomic, readonly, strong) NSString *spsb_addedf_num;//公积金可补缴月数
- @property (nonatomic, readonly, strong) NSString *spsb_sb_alone;//是否可以单独购买
- @property (nonatomic, readonly, strong) NSArray<SPSBFundsItemModel *> *spsb_funds;
- @property (nonatomic, readonly, strong) NSArray<SPSBShebaosModel *> *spsb_shebaos;
- @property (nonatomic, readonly, strong) NSDictionary<NSString *, NSArray<SPSBShebaos *> *> *spsba_shebao;
- @property (nonatomic, readwrite, strong) NSString *spsba_sb_vol;//社保月销售
- @property (nonatomic, readwrite, strong) NSString *spsba_fund_vol;//公积金月销售
- @property (nonatomic, readwrite, strong) SPSBFlowModel *spsba_flow;//流水
- @end
- @interface SPSBShebaoBaseData : SPSBBaseNetworkModel
- @property (nonatomic, readonly, strong) SPSBFlowModel *spsb_flow;//流水
- @property (nonatomic, readonly, strong) NSString *spsb_sb_vol;//社保月销售
- @property (nonatomic, readonly, strong) NSString *spsb_fund_vol;//公积金月销售
- @property (nonatomic, readonly, strong) NSArray<SPSBShebaoData *> *spsb_wxyj;//社保数据
- + (NSArray<SPSBShebaoData *> *)getShebaoDataListWithDictionary:(id)dict;
- @end
- NS_ASSUME_NONNULL_END
|