积分控制

2020/1/1

点击勘误issues (opens new window),哪吒感谢大家的阅读

# 积分控制

    @ApiOperation(value = "积分商品查询", notes = "积分商品查询")
    public RestRetO getPointsWares(HttpServletRequest request) throws Exception {
    }

    @ApiOperation(value = "积分商品兑换", notes = "积分商品兑换")
    public RestRetO getPointsExchange(@RequestParam("waresId") String waresId, HttpServletRequest request) throws Exception {
        //必须有执行中的订单,才能兑换使用(前端提示下单用户才可使用)
        //查询是否有对应的积分商用id
        //cashingFeeInfo
        //订单的计费规则类型是否与计费规则类型一致,在按照计费类型 时间累计,次数累计 延长过期时间(时间累计),更新订单
        
        //getPointsExchange 判断 积分信息中的余额 与 商品信息中的兑换积分 是否积分不足
        // todo 更新积分信息
        //新增积分明细,返回扣除积分成功
    }

    @ApiOperation(value = "积分记录分页查询", notes = "积分记录分页查询")
    public RestRetO getPointsExchangeHis(@RequestBody PointsInoutBO pointsInoutBO, HttpServletRequest request) throws Exception {
        // 手机号 + 身份证号
    }