文档
测试

查询需求大厅

GET
http://192.168.161.77/dev-api/ag/AgNeedHall/lists?pageNum=1&pageSize=10

请求参数

参数名
类型
描述
必填
pageNum
int
示例:1
必填
pageSize
int
示例:10
必填

响应参数

参数名
类型
描述
必填
total
int
示例:1
必填
rows
array
数据列表
必填
searchValue
object
示例:null
必填
createBy
object
示例:null
必填
createTime
object
示例:null
必填
updateBy
object
示例:null
必填
updateTime
object
示例:null
必填
remark
object
示例:null
必填
params
object
数据字典
必填
id
int
示例:1
必填
name
string
示例:3
必填
details
string
示例:2
必填
tissue
string
示例:32
必填
area
string
示例:3
必填
price
int
示例:1
必填
type
object
示例:null
必填
imagePath
string
示例:23
必填
startTime
string
示例:2021-11-24
必填
endTime
object
示例:null
必填
status
string
示例:0
必填
code
int
示例:200
必填
msg
string
示例:查询成功
必填

说明 / 示例

/** 主键 */ private Long id; /** 需求名称 */ @Excel(name = "需求名称") private String name; /** 详情 */ @Excel(name = "详情") private String details; /** 需求面积 */ @Excel(name = "需求面积") private String tissue; /** 需求品种 */ @Excel(name = "需求品种") private String area; /** 价格 */ @Excel(name = "价格") private Double price; /** 类型 */ @Excel(name = "类型") private String type; /** 图片路径 */ @Excel(name = "图片路径") private String imagePath; /** 发布时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "发布时间", width = 30, dateFormat = "yyyy-MM-dd") private Date startTime; /** 结束时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "结束时间", width = 30, dateFormat = "yyyy-MM-dd") private Date endTime; /** 状态 */ @Excel(name = "状态") private String status;