xuefei
2020-12-13 f95e2a385d4cbd07501b512079d7da6aae253a41
api.md
@@ -2,15 +2,26 @@
[1.通用](#1)  
     [ 1.1获取所有区域接口](#1.1)  
     [ 1.2获取全部补贴类型](#1.2)
 
[2.首页](#2)  
    [ 2.1获取区域津贴统计](#2.1)
[3.补贴](#3)
[4.服务对象](#4)
    [ 2.1补贴统计](#2.1)
    [ 2.2服务机构统计](#2.2)
    [ 2.3养老机构统计](#2.3)
    [ 2.4服务对象统计](#2.4)
[3.补贴](#3)
     [ 3.1获取总统计数据](#3.1)
     [ 3.2年度月度统计数据](#3.2)
[4.服务对象](#4)
    [ 4.1获取统计数据](#4.1)
    [ 4.2获取历史统计数据](#4.2)
[5.服务机构](#5)
    [ 5.1根据区域id获取区域下所有机构和人员数量以及订单总数](#5.1)
    [ 5.2根据区域id获取区域下所有服务以及服务详情和订单人数](#5.2)
    [ 5.3根据区域id和订单量查询服务机构排名情况](#5.3)
    [ 5.4根据区域id和订单量查询服务机构排名情况](#5.4)
    [ 5.5执行中订单](#5.4)
[5.服务机构](#5)
<h3 id='1'>一、通用</h2>
<h4 id='1.1'>1.1获取所有区域接口</h4>
@@ -18,7 +29,7 @@
> 获取所有区域
###### URL
> /api/getAllArea
> /api/common/getAllArea
###### 支持格式
> JSON
@@ -29,29 +40,102 @@
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|    |    ||                          |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
|   |    |   |
| name  |  String  |  名称 |
| pid  |  String  |  上级id |
###### 接口示例
###### 返回示例
``` java
{
    "statue": 0,
    "company": "可口可乐",
    "category": "饮料",
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607648233416,
    "result": [
        {
            "id": "1336922902628536320",
            "createBy": null,
            "createTime": "2020-12-10 14:37:13",
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "name": "石家庄市",
            "pid": null
        },
        {
            "id": "1336923258360041472",
            "createBy": null,
            "createTime": "2020-12-10 14:38:38",
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "name": "长安区",
            "pid": "1336922902628536320"
        },
        ...
    ]
}
```
<h4 id='1.2'>1.2获取全部补贴类型</h4>
###### 接口功能
> 获取全部补贴类型
###### URL
> /api/common/getAllSubsidyType
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| index  |  int  |  type值 |
| name  |  String  |  名称 |
###### 返回示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607648519602,
    "result": [
        {
            "index": 0,
            "name": "困难残疾生活补贴"
        },
        {
            "index": 1,
            "name": "重度残疾人生活补贴"
        },
        {
            "index": 2,
            "name": "高龄老人生活补贴"
        },
        {
            "index": 3,
            "name": "高龄老人生活津贴"
        },
        ...
    ]
}
``` 
<h3 id='2'>二、首页</h2>
<h4 id='2.1'>2.1获取区域津贴统计</h4>
<h4 id='2.1'>2.1补贴统计</h4>
###### 接口功能
> 根据区域名称获取津贴统计
> 根据区域id获取补贴统计
###### URL
> /api/getAllArea
> /api/index/getSubsidyStatics
###### 支持格式
> JSON
@@ -62,18 +146,1075 @@
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|    |    ||                          |
|  areaId  |  否  |String |     区域id                     |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
|   |    |   |
| total  |  double  |  补贴总金额 |
| typeName  |  String  |  补贴项目名称 |
| sum  |  double  |  补贴项目总金额 |
###### 接口示例
``` java
{
    "statue": 0,
    "company": "可口可乐",
    "category": "饮料",
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607665964425,
    "result": {
        "total": 2500,
        "list": [
            {
                "typeName": "高龄老人生活补贴",
                "sum": 1500,
                "type": 2
            },
            {
                "typeName": "重度残疾人生活补贴",
                "sum": 1000,
                "type": 1
            }
        ]
    }
}
```
```
<h4 id='2.2'>2.2服务机构统计</h4>
###### 接口功能
> 根据区域id服务机构统计
###### URL
> /api/index/getOrgFWStatics
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  否  |String |     区域id                     |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| total  |  int  |  服务机构总数 |
| detail  |  String  |  服务项目 |
| num  |  int  |  此服务项目总个数 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607667809694,
    "result": {
        "total": 0,
        "list": [
            {
                "num": 1,
                "detail": "康复服务"
            },
            {
                "num": 1,
                "detail": "生活料理"
            }
        ]
    }
}
```
<h4 id='2.3'>2.3养老机构统计</h4>
###### 接口功能
> 根据区域id获取养老机构统计
###### URL
> /api/index/getYlOrgYLStatics
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  否  |String |     区域id                     |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| total  |  int  |  养老机构总个数 |
| type0  |  int  |  养老院个数 |
| type1  |  int  |  敬老院个数 |
| type2  |  int  |  疗养院个数 |
| square  |  double  |  总面积 |
| bedNumber  |  int  |  床位个数 |
| nurseNumber  |  int  |  护理人员个数 |
| duixiangNumber  |  int  |  入住老人个数 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607668287242,
    "result": {
        "square": 5100,
        "total": 2,
        "type2": 0,
        "duixiangNumber": 24,
        "type1": 0,
        "bedNumber": 20,
        "type0": 2,
        "nurseNumber": 57
    }
}
```
<h4 id='2.4'>2.4服务对象统计</h4>
###### 接口功能
> 根据区域id获取服务对象统计
###### URL
> /api/index/getFuwuPersonStatics
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  否  |String |     区域id                     |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| total  |  double  |  服务对象总个数 |
| typeName  |  String  |  补贴项目名称 |
| sum  |  int  |  补贴项目总人数 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607669982970,
    "result": {
        "total": 2,
        "list": [
            {
                "num": 1,
                "typeName": "重度残疾人生活补贴",
                "type": 1
            },
            {
                "num": 1,
                "typeName": "高龄老人生活补贴",
                "type": 2
            }
        ]
    }
}
```
<h3 id='3'>三、补贴</h2>
<h4 id='3.1'>3.1获取总统计数据</h4>
###### 接口功能
> 根据区域id和补贴类型获取总的统计数据
###### URL
> /api/subsidy/getTotalStatistics
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  否  |String |     区域id                    |
|  type  |  否  |Integer |     补贴类型                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| totalPersonNum  |  int  |  获取补贴的总人数 |
| fwPersonCount  |  double  |  总金额 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607648976798,
    "result": {
        "totalPersonNum": 1,
        "totalMoney": 100
    }
}
```
<h4 id='3.2'>3.2年度月度统计数据</h4>
###### 接口功能
> 根据区域id和补贴类型获取年度月度统计数据
###### URL
> /api/subsidy/getStatistics
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  否  |String |     区域id                    |
|  type  |  否  |Integer |     补贴类型                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| monthStatistics  |  Objec  |  月度统计数据 |
| yearStatistics  |  Objec  |  年度统计数据 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607649436415,
    "result": {
        "monthStatistics": [
            {
                "sum": 100,
                "time": "2020-12"
            }
        ],
        "yearStatistics": [
            {
                "sum": 100,
                "time": "2020"
            }
        ]
    }
}
```
<h3 id='4'>四、服务对象</h2>
<h4 id='4.1'>4.1获取统计数据</h4>
###### 接口功能
> 根据区域id和补贴类型获取总的统计数据
###### URL
> /api2/fwdx/getStaticsData
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
|  type  |  否  |Integer |     补贴类型                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| subsidyType  |  int  |  补贴类型 |
| month  |  String  |  月份 |
| yearAdd  |  int  |  年新增 |
| yearOut  |  int  |  年退出 |
| yearSum  |  int  |  年合计 |
| monthAdd  |  int  |  月新增 |
| monthOut  |  int  |  月退出 |
| monthSum  |  int  |  月合计 |
| totalNum  |  int  |  申请总次数 |
| checkNum  |  int  |  复合总次数 |
| personNum  |  int  |  服务总人数 |
| subsidyTypeName  |  String  |  补贴名称 |
| child  |  List  |  子项目 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607743828413,
    "result": {
        "id": 0,
        "subsidyType": 0,
        "areaId": null,
        "month": "2020-12",
        "yearAdd": 1345,
        "yearOut": 233,
        "yearSum": 12330,
        "monthAdd": 117,
        "monthOut": 53,
        "monthSum": 5500,
        "totalNum": 3054,
        "checkNum": 3400,
        "personNum": 13500,
        "subsidyTypeName": "困难残疾生活补贴",
        "child": [
            {
                "id": 1,
                "subsidyType": 0,
                "areaId": "1336922902628536320",
                "month": "2020-12",
                "yearAdd": 745,
                "yearOut": 124,
                "yearSum": 6790,
                "monthAdd": 50,
                "monthOut": 43,
                "monthSum": 3200,
                "totalNum": 1854,
                "checkNum": 2100,
                "personNum": 7800,
                "subsidyTypeName": "困难残疾生活补贴",
                "child": null
            },
            {
                "id": 2,
                "subsidyType": 1,
                "areaId": "1336922902628536320",
                "month": "2020-12",
                "yearAdd": 600,
                "yearOut": 109,
                "yearSum": 5540,
                "monthAdd": 67,
                "monthOut": 10,
                "monthSum": 2300,
                "totalNum": 1200,
                "checkNum": 1300,
                "personNum": 5700,
                "subsidyTypeName": "重度残疾人生活补贴",
                "child": null
            }
        ]
    }
```
<h4 id='4.2'>4.2获取历史统计数据</h4>
###### 接口功能
> 根据区域id和补贴类型获取获取历史统计数据
###### URL
> /api2/fwdx/getHistoryStaticsData
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
|  type  |  否  |Integer |     补贴类型                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| month  |  String  |  月份 |
| mAdd  |  int  |  月新增 |
| mOut  |  int  |  月退出 |
| totalName  |  int  |  申请总次数 |
| checkNum  |  int  |  复核总次数 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607744308886,
    "result": [
        {
            "mOut": 53,
            "month": "2020-12",
            "checkNum": 3400,
            "mAdd": 117,
            "totalName": 3054
        },
        {
            "mOut": 15,
            "month": "2020-11",
            "checkNum": 3400,
            "mAdd": 75,
            "totalName": 2454
        },
        {
            "mOut": 25,
            "month": "2020-10",
            "checkNum": 3400,
            "mAdd": 105,
            "totalName": 2284
        }
    ]
}
```
<h3 id='5'>五、服务机构</h2>
<h4 id='5.1'>5.1根据区域id获取区域下所有机构和人员数量以及订单总数</h4>
###### 接口功能
> 根据区域id获取区域下所有机构和人员数量以及订单总数
###### URL
> /api/fwjg/getCountByAreaId
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| fwjgCount  |  Integer  |  服务机构总数 |
| fwPersonCount  |  Integer  |  服务人员总数 |
| orderCount  |  Integer  |  订单总数 |
| orderWatch  |  String  |  订单监控率 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607587253794,
    "result": {
        "fwjgCount": 1,
        "fwPersonCount": 1,
        "orderCount": 2,
        "orderWatch": "100%"
    }
}
```
<h4 id='5.2'>5.2根据区域id获取区域下所有服务以及服务详情和订单人数</h4>
###### 接口功能
> 根据区域id获取区域下所有机构和人员数量以及订单总数
###### URL
> /api/fwjg/getFwnlByAreaId
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| fuwuDetails  |  object  |  服务详情一级菜单 |
| fuwuDetailsList  |  list  |  服务详情二级菜单 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607594225830,
    "result": [
        {
            "fuwuDetails": {
                "id": "1336969411080359936",
                "createBy": null,
                "createTime": "2020-12-10 17:42:02",
                "updateBy": null,
                "updateTime": null,
                "delFlag": 0,
                "areaId": "1336923302341513216",
                "orgFwId": "1336941016934125568",
                "pid": null,
                "name": "康复服务",
                "orderNumber": null
            },
            "fuwuDetailsList": [
                {
                    "id": "1336969601455624192",
                    "createBy": null,
                    "createTime": "2020-12-10 17:42:47",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1336923302341513216",
                    "orgFwId": "1336941016934125568",
                    "pid": "1336969411080359936",
                    "name": "功能训练",
                    "orderNumber": 1
                },
                {
                    "id": "1336969641251180544",
                    "createBy": null,
                    "createTime": "2020-12-10 17:42:56",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1336923302341513216",
                    "orgFwId": "1336941016934125568",
                    "pid": "1336969411080359936",
                    "name": "康复按摩",
                    "orderNumber": 0
                }
            ]
        },
        {
            "fuwuDetails": {
                "id": "1336969708104192000",
                "createBy": null,
                "createTime": "2020-12-10 17:43:12",
                "updateBy": null,
                "updateTime": null,
                "delFlag": 0,
                "areaId": "1336923302341513216",
                "orgFwId": "1336941016934125568",
                "pid": null,
                "name": "生活照料服务",
                "orderNumber": null
            },
            "fuwuDetailsList": [
                {
                    "id": "1336969818158534656",
                    "createBy": null,
                    "createTime": "2020-12-10 17:43:39",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1336923302341513216",
                    "orgFwId": "1336941016934125568",
                    "pid": "1336969708104192000",
                    "name": "喘息服务",
                    "orderNumber": 0
                }
            ]
        }
    ]
}
}
```
<h4 id='5.3'>5.3 服务机构订单量</h4>
###### 接口功能
> 服务机构订单量
###### URL
> /api/fwjg/getFwjgOrderByOrderNumber
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| name  |  String  |  服务机构名称 |
| orderNumber  |  int  |  订单量 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607822690539,
    "result": [
        {
            "id": "13",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "1",
            "name": "康复按摩",
            "orderNumber": 0
        },
        {
            "id": "21",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "个人卫生服务",
            "orderNumber": 0
        },
        {
            "id": "22",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "喘息服务",
            "orderNumber": 0
        },
        {
            "id": "23",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "陪诊服务",
            "orderNumber": 0
        },
        {
            "id": "24",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "协助移位",
            "orderNumber": 0
        },
        {
            "id": "31",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "小时工",
            "orderNumber": 0
        },
        {
            "id": "32",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "日常保洁",
            "orderNumber": 0
        },
        {
            "id": "33",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "衣服拆洗缝补",
            "orderNumber": 0
        },
        {
            "id": "41",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "4",
            "name": "关怀服务",
            "orderNumber": 0
        },
        {
            "id": "42",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "4",
            "name": "生活陪伴",
            "orderNumber": 0
        }
```
<h4 id='5.4'>5.4 服务领域订单量</h4>
###### 接口功能
> 服务领域订单量
###### URL
> /api/fwjg/getFuwuDetailsOrderByOrderNumber
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| name  |  String  |  服务领域名称 |
| orderNumber  |  int  |  订单量 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607823539804,
    "result": [
        {
            "id": "13",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "1",
            "name": "康复按摩",
            "orderNumber": 0
        },
        {
            "id": "21",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "个人卫生服务",
            "orderNumber": 0
        },
        {
            "id": "22",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "喘息服务",
            "orderNumber": 0
        },
        {
            "id": "23",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "陪诊服务",
            "orderNumber": 0
        },
        {
            "id": "24",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "2",
            "name": "协助移位",
            "orderNumber": 0
        },
        {
            "id": "31",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "小时工",
            "orderNumber": 0
        },
        {
            "id": "32",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "日常保洁",
            "orderNumber": 0
        },
        {
            "id": "33",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "3",
            "name": "衣服拆洗缝补",
            "orderNumber": 0
        },
        {
            "id": "41",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "4",
            "name": "关怀服务",
            "orderNumber": 0
        },
        {
            "id": "42",
            "createBy": null,
            "createTime": null,
            "updateBy": null,
            "updateTime": null,
            "delFlag": 0,
            "areaId": null,
            "orgFwId": null,
            "pid": "4",
            "name": "生活陪伴",
            "orderNumber": 0
        }
    ]
}
```
<h4 id='5.5'>5.5执行中订单</h4>
###### 接口功能
> 执行中订单
###### URL
> /api/fwjg/getOrder
###### 支持格式
> JSON
###### HTTP请求方式
> GET
###### 请求参数
|参数|必选|类型|说明|
|:-----  |:-------|:-----|-----                               |
|  areaId  |  是  |String |     区域id                    |
###### 返回字段
|返回字段|字段类型|说明                              |
|:-----   |:------|:-----------------------------   |
| count  |  int  |  执行中订单数量 |
| orderByExecuteList  |  list  |  执行中订单详情 |
###### 接口示例
``` java
{
    "success": true,
    "message": "success",
    "code": 200,
    "timestamp": 1607824114880,
    "result": {
        "orderByExecuteList": [
            {
                "order": {
                    "id": "fds3",
                    "createBy": null,
                    "createTime": "2020-12-12 21:00:00",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "detailId": "11",
                    "detail": "指导评估",
                    "duixiangId": "1",
                    "personId": "1",
                    "state": 0
                },
                "fuwuPerson": {
                    "id": "1",
                    "createBy": null,
                    "createTime": "2020-12-11 14:17:55",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "name": "张三",
                    "age": null,
                    "sex": null,
                    "sfzhm": null,
                    "orgFwId": "1"
                },
                "fuwuDetails": {
                    "id": "11",
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": null,
                    "orgFwId": null,
                    "pid": "1",
                    "name": "指导评估",
                    "orderNumber": null
                }
            },
            {
                "order": {
                    "id": "1",
                    "createBy": null,
                    "createTime": "2020-12-17 17:27:37",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "detailId": "11",
                    "detail": "指导评估",
                    "duixiangId": "1",
                    "personId": "1",
                    "state": 0
                },
                "fuwuPerson": {
                    "id": "1",
                    "createBy": null,
                    "createTime": "2020-12-11 14:17:55",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "name": "张三",
                    "age": null,
                    "sex": null,
                    "sfzhm": null,
                    "orgFwId": "1"
                },
                "fuwuDetails": {
                    "id": "11",
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": null,
                    "orgFwId": null,
                    "pid": "1",
                    "name": "指导评估",
                    "orderNumber": null
                }
            },
            {
                "order": {
                    "id": "2",
                    "createBy": null,
                    "createTime": "2020-12-24 17:27:41",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "detailId": "12",
                    "detail": "功能训练",
                    "duixiangId": "1",
                    "personId": "1",
                    "state": 1
                },
                "fuwuPerson": {
                    "id": "1",
                    "createBy": null,
                    "createTime": "2020-12-11 14:17:55",
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": "1",
                    "name": "张三",
                    "age": null,
                    "sex": null,
                    "sfzhm": null,
                    "orgFwId": "1"
                },
                "fuwuDetails": {
                    "id": "12",
                    "createBy": null,
                    "createTime": null,
                    "updateBy": null,
                    "updateTime": null,
                    "delFlag": 0,
                    "areaId": null,
                    "orgFwId": null,
                    "pid": "1",
                    "name": "功能训练",
                    "orderNumber": null
                }
            }
        ],
        "count": 3
    }
}
、、、