SPSBShebaoData.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. //
  2. // SPSBShebaoData.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/22.
  6. //
  7. #import "SPSBBaseNetworkModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBFlowModel : SPSBBaseNetworkModel
  10. @property (nonatomic, readonly, strong) NSString *spsb_flow_charge;//流水服务费
  11. @property (nonatomic, readonly, strong) NSString *spsb_flow_force;//是否强制交流水
  12. @property (nonatomic, readonly, strong) NSString *spsb_flow_end;//流水上限
  13. @property (nonatomic, readonly, strong) NSString *spsb_flow_fee;//流水下限
  14. @property (nonatomic, readonly, strong) NSString *spsb_flow_flag;//是否需要流水
  15. @property (nonatomic, readonly, strong) NSString *spsb_remark;//流水提示
  16. @end
  17. @interface SPSBFundsItemModel : SPSBBaseNetworkModel
  18. @property (nonatomic, readonly, strong) NSString *spsb_e;//2
  19. @property (nonatomic, readonly, strong) NSString *spsb_hukou_type;
  20. @property (nonatomic, readonly, strong) NSString *spsb_max;//1
  21. @property (nonatomic, readonly, strong) NSString *spsb_min;//0
  22. @property (nonatomic, readonly, strong) NSString *spsb_p;//3
  23. @end
  24. @interface SPSBShebaos : SPSBBaseNetworkModel
  25. @property (nonatomic, readwrite, strong) NSString *spsb_i;//排序用
  26. @property (nonatomic, readwrite, strong) NSString *spsb_n;//名称
  27. @property (nonatomic, readwrite, strong) NSString *spsb_p;//价格
  28. @end
  29. @interface SPSBShebaosModel : SPSBBaseNetworkModel
  30. @property (nonatomic, readonly, strong) NSArray<SPSBShebaos *> *spsb_data;
  31. @property (nonatomic, readonly, strong) NSString *spsb_hukou_type;
  32. @end
  33. @interface SPSBShebaoData : SPSBBaseNetworkModel
  34. @property (nonatomic, readonly, strong) NSString *spsb_fund_charge;
  35. @property (nonatomic, readonly, strong) NSString *spsb_shebao_charge;
  36. @property (nonatomic, readonly, strong) NSString *spsb_shebao_card_charge;
  37. @property (nonatomic, readonly, strong) NSString *spsb_added_charge;//补缴服务费
  38. @property (nonatomic, readonly, strong) NSString *spsb_package_charge;
  39. @property (nonatomic, readonly, strong) NSString *spsb_shebao_type;
  40. @property (nonatomic, readonly, strong) NSString *spsb_city_code;
  41. @property (nonatomic, readonly, strong) NSString *spsb_id;
  42. @property (nonatomic, readonly, strong) NSString *spsb_inc_date;//截止日期
  43. @property (nonatomic, readonly, strong) NSString *spsb_nums;//最少月数
  44. @property (nonatomic, readonly, strong) NSString *spsb_month;//开始月份
  45. @property (nonatomic, readonly, strong) NSString *spsb_pack;
  46. @property (nonatomic, readonly, strong) NSString *spsb_fund_buy;
  47. @property (nonatomic, readonly, strong) NSString *spsb_fund_buy2;//是否开放公积金购买
  48. @property (nonatomic, readonly, strong) NSString *spsb_shebao_note;//补缴说明
  49. @property (nonatomic, readonly, strong) NSString *spsb_fund_note;//补缴说明
  50. @property (nonatomic, readonly, strong) NSString *spsb_shebao_desc;//正常购买说明
  51. @property (nonatomic, readonly, strong) NSString *spsb_fund_desc;//正常购买说明
  52. @property (nonatomic, readonly, strong) NSString *spsb_addeds_num;//社保可补缴月数
  53. @property (nonatomic, readonly, strong) NSString *spsb_addedf_num;//公积金可补缴月数
  54. @property (nonatomic, readonly, strong) NSString *spsb_sb_alone;//是否可以单独购买
  55. @property (nonatomic, readonly, strong) NSArray<SPSBFundsItemModel *> *spsb_funds;
  56. @property (nonatomic, readonly, strong) NSArray<SPSBShebaosModel *> *spsb_shebaos;
  57. @property (nonatomic, readonly, strong) NSDictionary<NSString *, NSArray<SPSBShebaos *> *> *spsba_shebao;
  58. @property (nonatomic, readwrite, strong) NSString *spsba_sb_vol;//社保月销售
  59. @property (nonatomic, readwrite, strong) NSString *spsba_fund_vol;//公积金月销售
  60. @property (nonatomic, readwrite, strong) SPSBFlowModel *spsba_flow;//流水
  61. @end
  62. @interface SPSBShebaoBaseData : SPSBBaseNetworkModel
  63. @property (nonatomic, readonly, strong) SPSBFlowModel *spsb_flow;//流水
  64. @property (nonatomic, readonly, strong) NSString *spsb_sb_vol;//社保月销售
  65. @property (nonatomic, readonly, strong) NSString *spsb_fund_vol;//公积金月销售
  66. @property (nonatomic, readonly, strong) NSArray<SPSBShebaoData *> *spsb_wxyj;//社保数据
  67. + (NSArray<SPSBShebaoData *> *)getShebaoDataListWithDictionary:(id)dict;
  68. @end
  69. NS_ASSUME_NONNULL_END