拍卖宝贝列表 websocket测试 GET /auction/inProcessingAuctions 说明 / 示例 //返回参数 /** * 宝贝id */ private long id; /** * 名称 */ private String name; /** * 保证金也就是定金 */ private int deposit; /** * 拍卖商品主图 */ private String image; /** * 起拍价 单位分 */ private int startPrice; /** * 最高价 单位分 */ private int mostPrice; /** * 加价幅度 单位分 (mostPrice-startPrice)/totalStepCount */ private int step; /** * 允许加价总数 */ private int totalStepCount; /** * 距离上次加价间隔多少时间 (单位/秒) * 拍卖结束时间 = stepInterval * totalStepCount */ private int stepInterval; /** * 商品详情图片集合 */ private List<String> detailImages; /** * 几人场 */ private int limit; /** * 宝贝状态 * @see hz.chenjh.auction.biz.enums.AuctionStatus */ private int status; STOP(0, "停拍下架"), SHELF(1, "上架"); /** * 红包区间 */ private int[] redPacketRegion;
//返回参数 /** * 宝贝id */ private long id; /** * 名称 */ private String name; /** * 保证金也就是定金 */ private int deposit; /** * 拍卖商品主图 */ private String image; /** * 起拍价 单位分 */ private int startPrice; /** * 最高价 单位分 */ private int mostPrice; /** * 加价幅度 单位分 (mostPrice-startPrice)/totalStepCount */ private int step; /** * 允许加价总数 */ private int totalStepCount; /** * 距离上次加价间隔多少时间 (单位/秒) * 拍卖结束时间 = stepInterval * totalStepCount */ private int stepInterval; /** * 商品详情图片集合 */ private List<String> detailImages; /** * 几人场 */ private int limit; /** * 宝贝状态 * @see hz.chenjh.auction.biz.enums.AuctionStatus */ private int status; STOP(0, "停拍下架"), SHELF(1, "上架"); /** * 红包区间 */ private int[] redPacketRegion;