文档
测试

查询自己申请的广告

GET
/api/advertising/listIssue

请求参数

参数名
类型
描述
必填
advType
int
advType==0时,查询类型为个人的广告,1为查询商家类型,不传为全部
必填
limit
int
必填
page
int
必填

响应参数

参数名
类型
描述
必填
status
int
示例:200
必填
success
boolean
示例:true
必填
msg
string
示例:操作成功
必填
data
object
数据字典
必填
records
array
数据列表
必填
id
int
示例:1
必填
title
string
示例:
必填
url
string
示例:[ "123" ]
必填
createTime
int
示例:1606377836000
必填
userId
int
示例:71
必填
mechantId
int
示例:0
必填
flag
int
示例:0
必填
latitude
string
示例:28.161551
必填
longitude
string
示例:40.0497810000
必填
sex
string
示例:
必填
unit
int
示例:0
必填
num
int
示例:0
必填
distance
int
示例:999999999
必填
mydistance
object
示例:null
必填
startTime
object
示例:null
必填
endTime
object
示例:null
必填
advExplain
object
示例:null
必填
surplus
int
示例:1
必填
consume
int
示例:0
必填
isCheck
int
示例:1
必填
type
object
示例:null
必填
advTyepe
object
示例:null
必填
isPay
object
示例:null
必填
total
int
示例:11
必填
size
int
示例:10
必填
current
int
示例:1
必填
orders
array
数据列表
必填
searchCount
boolean
示例:true
必填
pages
int
示例:2
必填
total
int
示例:11
必填
time
string
示例:2020-11-30 13:37:39
必填

说明 / 示例

{ "status": 200, "success": true, "msg": "操作成功", "data": [ { "id": 15, "title": "1221", "url": "[\n \"http://file.yuntunvip.com/1606733458440-20201130185059.png\"\n]", "createTime": 1606734538000, "userId": 71, "mechantId": 55, "flag": 0, "startAge": 0, "endAge": 10, "latitude": "28.109433", "longitude": "113.009981", "totalPrices": 0.1, "sex": "男", "unit": 0.51, "number": 10, "distance": 99999999, "mydistance": null, "startTime": "00:00", "endTime": "12:00", "advExplain": "111", "surplus": 1, "consume": 0, "isCheck": 1, "type": 0, "advTyepe": 1, "outTradeNo": "1333367409221828608", "payType": 1, "isPay": 1, "images": [ "http://file.yuntunvip.com/1606733458440-20201130185059.png" ] }, { "id": 16, "title": "1221", "url": "[\n \"http://file.yuntunvip.com/1606733458440-20201130185059.png\"\n]", "createTime": 1606740991000, "userId": 71, "mechantId": 55, "flag": 0, "startAge": 0, "endAge": 10, "latitude": "28.109433", "longitude": "113.009981", "totalPrices": 0.1, "sex": "男", "unit": 0.51, "number": 10, "distance": 1, "mydistance": null, "startTime": "00:00", "endTime": "12:00", "advExplain": "111", "surplus": 0, "consume": 0, "isCheck": 0, "type": 0, "advTyepe": 1, "outTradeNo": "1333394473895329792", "payType": 1, "isPay": 0, "images": [ "http://file.yuntunvip.com/1606733458440-20201130185059.png" ] }, { "id": 17, "title": "1221", "url": "[\n \"http://file.yuntunvip.com/1606733458440-20201130185059.png\"\n]", "createTime": 1606741740000, "userId": 71, "mechantId": 55, "flag": 0, "startAge": 0, "endAge": 10, "latitude": "28.109433", "longitude": "113.009981", "totalPrices": 0.1, "sex": "男", "unit": 0.51, "number": 10, "distance": 1, "mydistance": null, "startTime": "00:00", "endTime": "12:00", "advExplain": "111", "surplus": 0, "consume": 0, "isCheck": 0, "type": 0, "advTyepe": 1, "outTradeNo": "1333397616397910016", "payType": 1, "isPay": 0, "images": [ "http://file.yuntunvip.com/1606733458440-20201130185059.png" ] } ], "total": 3, "time": "2020-11-30 23:45:31" } @TableId private Long id; /** 名字 */ private String title; /** 地址 */ private String url; /** 创建时间 */ @TableField(fill = FieldFill.INSERT) private Timestamp createTime; /** 商店用户id */ private Long userId; /** 商店id */ private Long mechantId; /** 标志位 */ private Integer flag; /** *开始年龄 */ private Integer startAge; /** * 结束年龄 */ private Integer endAge; /** 维度 */ private String latitude; /** 经度 */ private String longitude; private BigDecimal totalPrices; /** 性别 */ private String sex; /** 单价 */ private BigDecimal unit; /** 数量 */ private Integer num; /** 商铺距离 */ private Double distance; /** * 实际距离 */ private Double mydistance; /** 开始时间 */ private String startTime; /** 结束时间 */ private String endTime; /** 广告任务说明 */ private String advExplain; /** 剩余次数 */ private Integer surplus; /** 消耗 */ private Integer consume; /** 是否通过审核 */ private Integer isCheck; /** * 0无限制1一人一次2每天一人一次 */ private Integer type; /** * 广告类型:0个人广告1商家广告 */ private Integer advTyepe; /** * 支付订单号 */ private String outTradeNo; /** * 支付类型 */ private Integer payType; /** 是否支付 */ private Integer isPay;