yapi的使用之Mock篇

[toc]

yapi的使用之Mock篇2-类型修改

一、时间

编号 接口 变量 变量含义 原来为 修改为 备注
1 order/orderList
订单列表
orderTime 下单时间 string integer @timestamp
2 order/orderDetail
订单详情
deliveryTime
gmtCreate 2处
sendTime
orderTime
overTime
payTime
送达时间
创建时间
送出时间
下单时间
超时时间
付款时间
3 product/getGoodsDetailInfo
获取商品详情(包含爆品、精品)
homeRecoTime 首页推荐时间 string integer @timestamp
4 member/getMemberInfo
获取会员信息
startTime
endTime
会员有效期 - 开始时间
会员有效期 - 开始时间
5 wish/listByBuyId
用户心愿单列表查询
gmtCreate 创建时间
6 wish/listWatchWish
查询好友的心愿单列表
gmtCreate 创建时间
7 wish/getDetail
心愿单详情页
gmtCreate 2处
gmtModify 2处
statusUpdateTime
topTime 2处
创建时间
记录更新时间
状态更新时间
置顶时间
8 /user/queryUserWishCollect
查询愿望单收藏
gmtCreate 创建时间
9 product/getGoodsInfoList
获取商品列表(包含推荐,收藏,愿望,搜索推荐,分类)
categoryRecoTime
homeRecoTime
分类推荐时间
首页推荐时间

二、数字字符串

编号 接口 变量 变量含义 原来为 修改为 备注
1 wish/getDetail
心愿单详情页
progress.rate 愿望达成率 string string 40只能数字字符串
2 wish/listByBuyId
用户心愿单列表查询
progress.rate 愿望达成率 string string 40只能数字字符串
3 wish/listWatchWish
查询好友的心愿单列表
progress.rate 愿望达成率 string string 40只能数字字符串
4 /wish/listRecommendWish
查询推荐的心愿单列表
wishProgress.rate 愿望达成率 string string 40只能数字字符串

若非数字字符串,则会报以下错误:

yapi_mockjson_error1

三、Raw

用户心愿单列表查询

编号 接口 Raw旧值 Raw新值
1 user/saveUserLookTrack
保存用户足迹接口
OK {“type”:”object”,”title”:”empty object”,”properties”:{}}
2 social/operateFriend
关注/取消关注好友操作接口

四、Type Mock

用户心愿单列表查询

编号 接口 变量 变量含义 Mock值 备注
1 order/orderList
订单列表
orderInfoAndPayInfoDetailResps.orderInfoDetails.status 订单状态 @cjtsOrderType
2 order/orderDetail
订单详情
orderInfoDetails.status 订单状态 @cjtsOrderType
3 /social/pageWatched
分页查询已关注列表
watchStatus 关注方向 @cjtsFriendshipeType
4 product/getGoodsInfoList
获取商品列表(包含推荐,收藏,愿望,搜索推荐,分类)
businessType 商品类型 @goodBusinessType

End