文档
测试

产品数据列表接口

POST
http://localhost:8082/official/product/list

响应参数

参数名
类型
描述
必填
code
int
执行结果代码
必填
message
string
执行结果信息
必填
total
int
总记录数
必填
rows
array
数据列表
必填
id
int
产品信息Id
必填
productName
string
产品姓名
必填
productIntroduce
string
产品介绍
必填
imageList
array
图片数据列表
必填
productLogo
string
产品Logo
必填
updateProduct
string
产品更新介绍
必填
updateTime
string
更新时间
必填
upTime
string
预计上线时间
必填
timeCreate
object
创建时间
必填
timeModified
string
示例:2020-09-14
必填

响应示例

``` { "total": 1, "rows": [ { "id": 10, "productName": "我是产品2", "productIntroduce": "我是产品2", "imageList": [ "http://inso-register-img.oss-cn-shenzhen.aliyuncs.com/official/1ed83a5e871242d987685d2aab4a0d2aimage1596791404403.jpg" ], "productLogo": "更好了", "updateProduct": "https://www.tencent.com/data/logo-pic/1.1.png", "updateTime": "2020-11-25", "upTime": "2020-10-25", "timeCreate": null, "timeModified": "2020-09-14" } ], "code": 200, "msg": "查询成功" } ```