adminCase - TimYi/FengHuang GitHub Wiki
请求URL
http://101.200.229.135:8080/api/admin/case
字段说明
字段分为显示和保存两部分。
保存字段会有一些关联实体的id,显示字段会把一些关联实体的内容扁平化显示。
显示字段
套餐名称 packageName 499套餐 string
风格 stype 欧式 string
空间 space 书房、厨房 string
户型 houseType 二居室 string
价格 price 51888 double
面积 area 88.85 double
描述 description 三居80㎡简装499套餐简欧案例 string
案例编号 code AL10230405(手动输入) string
TAG tags 公寓 卧室 简欧(like匹配) string
图片 mainPic 图片{id,url} media
传参字段
mainPic——>mainPicFile,上传文件
tags——>tagExpression,用' '空格分隔的字符串
其它和显示字段一致
返回示例
{
"result": {
"totalCount": 2,
"totalPages": 1,
"page": 1,
"size": 8,
"result": [
{
"id": "404040e64dfb49c7014dfb49d55b0000",
"name": "凤凰筑家装修案例",
"packageName": null,
"style": "美式",
"space": null,
"houseType": null,
"price": 58888,
"area": 88.85,
"description": null,
"code": null,
"mainPic": null,
"tags": [
{
"name": "499套餐"
},
{
"name": "简约"
},
{
"name": "厨房"
}
]
},
{
"id": "404040e64dfb4dc2014dfb4dd2710000",
"name": "凤凰筑家装修案例",
"packageName": null,
"style": "美式",
"space": null,
"houseType": null,
"price": 58888,
"area": 88.85,
"description": null,
"code": null,
"mainPic": null,
"tags": [
{
"name": "499套餐"
},
{
"name": "美式"
},
{
"name": "厨房"
}
]
}
]
},
"status": "OK"
}