带城市方案数据的基础数据明细.
/he/city_plan/list GET / POST
基础配置数据明细.
/he/city_plan/list/default GET / POST
Integer city_code // 城市代码. 可空.
字段 | 类型 | 字段名称 |
---|---|---|
cityList | CityBaseVO | 城市信息列表 |
city_code | int | 城市代码 |
plan | TWxyjPlan | 城市方案数据 |
shebao | List(ShebaoTopLowVO) | 社保基础数据 和户籍的最高最低数据. |
fund | TBaseFund | 城市的公积金基础数据 |
fundTopLow | List |
公积金最高最低数据 |
opt_rules | ENUM | 操作规则枚举常量 |
ShebaoTopLowVO
TBaseShebao shebao;
List<HukouTopLowVO> topLowList;
-- HukouTopLowVO:
List<HuKouConst> hukouList; // 相同配置的户口列表
TopLowVO top; // 险种数据
TopLowVO low; // 险种数据
---- TopLowVO:
List<TopLowItemVO> itemList; // 险种数据
----TopLowItemVO:
String item; // 险种
double radix; // 缴费基数
double ent_ratio; // 单位缴费比例
double ent_amount; // 单位缴费金额(元)
double p_ratio; // 个人缴费比例
double p_amount; // 个人缴费金额(元)
double ratio; // 合计比例
double amount; // 合计金额(元)
boolean usePlan; // 使用了城市方案的配置
double ent_total; // 单位合计
double p_total; // 个人合计
double total; // 合计
暂无 , 后面补充.
/he/city_plan/edit/load GET / POST
Integer planId // 城市方案的标识ID. 可空.
字段 | 类型 | 字段名称 |
---|---|---|
citys | List(Map) | 所有城市. planId==0 时才存在. |
planId | int | 城市方案的标识ID |
city_name | String | 城市中文名称 |
plan | TWxyjPlan | 城市方案数据 |
暂无 , 后面补充.
/he/city_plan/edit POST
参数是TWxyjPlan对象的字段列表.
字段 | 类型 | 字段名称 |
---|---|---|
plan | TWxyjPlan | 城市方案数据 |
返回城市方案的标识ID.
200 修改成功.
600 参数异常
{
"data": 60,
"msg": "",
"code": 200
}