文档
测试

获取页面列表✔️

POST
http://192.168.2.46/WarehouseApi/Sfc/QueryPages

接口描述

获取页面列表

请求头

参数名
类型
描述
必填
Token
string
示例:
必填

请求参数

参数名
类型
描述
必填
Type
object
类型(0=活动,1=分类,2=首页)
可选
ClientType
string
客户端类型 PC,App
可选
PageIndex
int
当前页
必填
PageSize
int
每页条数
必填
FillMode
int
数据模型类型:2代表同时返回页面组件列表
必填

响应参数

参数名
类型
描述
必填
ResultCode
int
示例:200
必填
Message
object
示例:null
必填
Tag
array
数据列表
必填
PageId
int
页面id
必填
PageCategroyId
int
暂时不用
必填
Name
string
页面名称
必填
Notes
object
页面描述
必填
Type
int
类型(0=活动,1=分类,2=首页)
必填
ClientType
string
客户端类型 PC,App
必填
StartTime
object
有效期开始时间
必填
EndTime
object
有效期结束时间
必填
SeoTitle
string
seo标题
必填
SeoKeywords
string
seo关键字
必填
SeoDescription
string
seo描述
必填
CreatedTime
string
添加时间
必填
IsSet
int
是否默认页面,只有首页使用
必填
TotalRecord
int
总数据条数
必填
Success
boolean
示例:true
必填

说明 / 示例

示例说明: ```language { "ResultCode": 200, "Message": null, "Tag": [ { "PageId": 1, "PageCategroyId": 1, "Name": "首页", "Notes": null, "Type": 1, "ClientType": "PC", "StartTime": null, "EndTime": null, "SeoTitle": "", "SeoKeywords": "", "SeoDescription": "", "CreatedTime": "2020-06-13 11:59:36" }, { "PageId": 2, "PageCategroyId": 2, "Name": "首页商品分类页面", "Notes": null, "Type": 2, "ClientType": "PC", "StartTime": null, "EndTime": null, "SeoTitle": "", "SeoKeywords": "", "SeoDescription": "", "CreatedTime": "2020-06-13 14:04:44" }, { "PageId": 3, "PageCategroyId": 1, "Name": "活动", "Notes": "", "Type": 0, "ClientType": "PC", "StartTime": "2020-06-13 14:28:59", "EndTime": "2020-06-13 14:28:59", "SeoTitle": "", "SeoKeywords": "", "SeoDescription": "", "CreatedTime": "2020-06-13 14:28:59" } ], "TotalRecord": 3, "Success": true } ```