便民服务
1.获取企业的商品信息表
请求方式:Get
功能:获取各企业提供的服务(包括商品)
请求路径:http://192.168.1.151:10007/Handler/GetGoods_Service.ashx
请求参数和描述:
字段名 |
备注 |
MerchantsID |
企业编号 |
GoodsTypeGUID |
商品类别编号 |
请求格式:
{
"MerchantsID":"",
"GoodsTypeGUID": ""
}
返回参数和描述:
字段名 |
备注 |
goodsguid |
商品编号 |
merchantsid |
所属企业编号 |
goodtypeguid |
商品类别编号 |
goodsname |
商品名称 |
goodstypename |
商品类别 |
goodsimgs |
商品照片 |
price |
商品价格 |
description |
商品描述 |
checkstate |
审核状态 |
salestate |
是否在售 |
viewcount |
浏览次数 |
weight |
商品重量 |
quantity_month |
月销售量 |
quantity_total |
总销售量 |
star |
星级 |
返回格式:
[
{
"goodsguid": "0001",
"merchantsid": "0001",
"goodtypeguid": "002",
"goodsname": "快餐",
"goodsimgs": "",
"price": "25",
"description": "",
"checkstate": "1",
"salestate": "1",
"viewcount": "0",
"weight": "",
"quantity_month": "25",
"quantity_total": "76",
"star": "5",
"goodstypename": "快餐简餐"
}
]
2.获取经营企业列表
请求方式:Get
功能:获取各企业提供的服务(包括商品)
请求路径:http://192.168.1.151:10007 /Handler/GetBMFW_SERVICE.ashx
请求参数和描述:
字段名 |
备注 |
MerchantsID |
企业编号 |
categoriesguid |
企业类别 |
请求格式:
{
"MerchantsID":"",
"categoriesguid": ""
}
返回参数和描述:
字段名 |
备注 |
merchantsid |
入驻企业编号 |
merchantsname |
企业名称 |
photosname |
企业照片 |
categoriesname |
企业类别 |
tel |
企业电话号码 |
address |
企业地址 |
x |
x坐标 |
y |
y坐标 |
minconsumption |
起送金额 |
BusinessHours |
营业时间 |
is_distribution |
是否支持配送 |
distribution_message |
商家配送信息 |
announcement_message |
商家公告消息 |
evaluate_start_all |
总评分 |
evaluate_start_taste |
口味评分 |
evaluate_start_package |
包装评分 |
evaluate_start_distribution |
配送评分 |
action_kind |
活动类别 |
action_message |
活动信息 |
返回格式:
{
[
{
"merchantsid": "0001",
"merchantsname": "玉树三和小炒",
"photosname": "1.jpg",
"categoriesname": "餐饮服务",
"tel": "052-5239746",
"address": "红卫路81号",
"x": null,
"y": null,
"minconsumption": 40,
"businesshours": "9:00--22:00",
"is_distribution": 1,
"distribution_message": "我们将尽快配送",
"announcement_message": "本店40元起送",
"lstSERVER_EVALUATE_START": [
{
"evaluate_start_taste": 5,
"evaluate_start_all": 5,
"evaluate_start_package": 5,
"evaluate_start_distribution": 5
}
],
"lstSERVER_ACTION_MESSAGE": [
{
"action_kind": "优惠活动",
"action_message": "所有一律9折"
}
]
}
]
}
3. 获取便民服务大类(新增)
请求方式:Get
功能:获取各企业提供的服务(包括商品)
请求路径:http://192.168.1.151:10007/Handler/Getdict_Categories_Service.ashx
请求参数:无参
返回参数和描述:
字段名 |
备注 |
Categoriesguid |
ID |
Categoriesname |
父类名称 |
Parentcategoriesguid |
父级ID |
ChildTree |
子类 |
返回格式:
{
"result": [
{
"CATEGORIESGUID": "0005",
"CATEGORIESNAME": "宾馆住宿",
"PARENTCATEGORIESGUID": "-1",
"ChildTree": [
{
"CATEGORIESGUID": "0005001",
"CATEGORIESNAME": "经济型",
"PARENTCATEGORIESGUID": "0005",
"ChildTree": []
},
{
"CATEGORIESGUID": "0005002",
"CATEGORIESNAME": "三星/舒适",
"PARENTCATEGORIESGUID": "0005",
"ChildTree": []
},
{
"CATEGORIESGUID": "0005003",
"CATEGORIESNAME": "四星/高档",
"PARENTCATEGORIESGUID": "0005",
"ChildTree": []
},
{
"CATEGORIESGUID": "0005004",
"CATEGORIESNAME": "五星/豪华",
"PARENTCATEGORIESGUID": "0005",
"ChildTree": []
}
]
},
{
"CATEGORIESGUID": "0006",
"CATEGORIESNAME": "医疗药店",
"PARENTCATEGORIESGUID": "-1",
"ChildTree": [
{
"CATEGORIESGUID": "0006001",
"CATEGORIESNAME": "药店",
"PARENTCATEGORIESGUID": "0006",
"ChildTree": []
},
{
"CATEGORIESGUID": "0006002",
"CATEGORIESNAME": "宠物医院",
"PARENTCATEGORIESGUID": "0006",
"ChildTree": []
},
{
"CATEGORIESGUID": "0006003",
"CATEGORIESNAME": "个体门诊",
"PARENTCATEGORIESGUID": "0006",
"ChildTree": []
}
]
}
]
}
4.