文档目录:doc
init.sql 初始化sql
配置数据库源
application.yaml和quartz.properties两文件中的数据库地址都要修改
配置端口
修改application.yaml文件
启动类
com.hydosky.hydoskycdata.HydoskyCdataApplication
/api/todayRealTimeHot
JSON
GET
|参数|必选|类型|说明| |:----- |:-------|:-----|----- | |top |true |int|排名前几 |
|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |value |int |货物量 | |content |string | 货物类名 |
[
{
"value": 159,
"content": "水暖五金"
},
{
"value": 154,
"content": "汽车电器"
}
]
/api/todayRealTimeHotShoppingMall
JSON
GET
返回字段 字段类型 说明 name string 城市 lng double 经度 lat double 纬度 value double 订单数 type string 类型,默认1
地址:http://47.106.14.121:666/api/todayRealTimeHotShoppingMall
[
{
"lng": 104.722408,
"name": "绵阳",
"type": "1",
"value": 545,
"lat": 31.441036
},
{
"lng": 114.877755,
"name": "赣州",
"type": "1",
"value": 319,
"lat": 25.758279
}
]
/api/todayOrderStats
JSON
GET
[
{
"今日订单总量": "1524笔",
"今日订单总额": "391261元",
"今日货物总量": "3763件"
}
]
/api/orderTotal
JSON
GET
[
{
"历史订单总额": "4294308元",
"历史订单总量": "27190笔",
"历史货物总量": "67639件"
}
]
/api/recentOrderFreightStatistics
JSON
GET
|参数|必选|类型|说明| |:----- |:-------|:-----|----- | |top |true |int|前几天 |
|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |x |string |日期 | |y |int | 订单金额 |
地址:http://47.106.14.121:666/api/recentOrderFreightStatistics?top=7
[
{
"s": 1,
"x": "12.13",
"y": 416190
},
{
"s": 1,
"x": "12.14",
"y": 385512
}
]
/api/toYearCityFreightAmountStatistics
JSON
GET
|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |x |string |城市 | |y |int | 货运金额 |
地址:http://47.106.14.121:666/api/toYearCityFreightAmountStatistics
[
{
"x": "兰州",
"y": 562118
},
{
"x": "柳州",
"y": 505403
}
]
/api/toYearCityCargoQuantityStatistics
JSON
GET
|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |x |String |城市 | |y |int | 货物量 |
地址:http://47.106.14.121:666/api/toYearCityCargoQuantityStatistics
[
{
"x": "兰州",
"y": 8883
},
{
"x": "柳州",
"y": 7948
}
]
/api/cargoCategoryRanking
JSON
GET
|返回字段|字段类型|说明 | |:----- |:------|:----------------------------- | |x |string |一级货物品类 | |y |int | 货物量 |
[
{
"x": "日用百货",
"y": 1102318
},
{
"x": "建材家居",
"y": 988727
}
]