简要描述
- 规划基本信息查询接口(新增字段-update by 王宇亭 2021年12月22日15:24:22)
请求URL
请求方式
参数
参数名 |
必选 |
类型 |
说明 |
planningId |
是 |
Long |
规划ID |
返回示例
{
....
"dataRows": {
...
"threeEstimateSelf": null,
"threeEstimateThirdparty": null,
"threeYearRzSelf": null,
"threeYearRzThirdparth": null,
"twoEstimateSelf": null,
"twoEstimateThirdparty": null,
"twoYearRzSelf": null,
"twoYearRzThirdparth": null,
"currentEstimateSelf": null,
"currentEstimateThirdparty": null,
"currentYearRzSelf": null,
"currentYearRzThirdparth": null,
"earlyStartFlag": "0",
"earlyStartSelf": null,
"earlyStartThirdparty": null,
"planningNeedsOrgs":[
{
"id":"主键",
"orgName":"主需求单位",
"mainDemand":"主要述求"
}
]
...
}
}
返回参数说明
参数名 |
类型 |
说明 |
threeEstimateSelf |
BigDecimal |
投资预估-自研-第三年 |
threeEstimateThirdparty |
BigDecimal |
投资预估-第三方-第三年 |
threeYearRzSelf |
BigDecimal |
入账预估-自研-第三年 |
threeYearRzThirdparth |
BigDecimal |
入账预估-第三方-第三年 |
twoEstimateSelf |
BigDecimal |
投资预估-自研-第二年 |
twoEstimateThirdparty |
BigDecimal |
投资预估-第三方-第二年 |
twoYearRzSelf |
BigDecimal |
入账预估-自研-第二年 |
twoYearRzThirdparth |
BigDecimal |
入账预估-第三方-第二年 |
currentEstimateSelf |
BigDecimal |
投资预估-自研-当年 |
currentEstimateThirdparty |
BigDecimal |
投资预估-第三方-当年 |
currentYearRzSelf |
BigDecimal |
入账预估-自研-当年 |
currentYearRzThirdparth |
BigDecimal |
入账预估-第三方-当年 |
earlyStartFlag |
String |
提前启动标识:"0":不提前启动,"1":提前启动 |
earlyStartSelf |
BigDecimal |
提前启动自研 |
earlyStartThirdparty |
BigDecimal |
提前启动第三方 |
planningNeedsOrgs |
List<Object> |
提前启动第三方 |
id |
Long:planningNeedsOrgs Object 属性 |
id |
orgName |
String:planningNeedsOrgs Object 属性 |
主需求单位名称 |
mainDemand |
String:planningNeedsOrgs Object 属性 |
主需需求 |
备注