zhengfangyuan 3 лет назад
Родитель
Сommit
f0d8eb4935
1 измененных файлов: 9 добавлений и 0 удалений
  1. +9
    -0
      mallinkAdmin/src/main/java/com/iformall/controller/market/WxCouponController.java

+ 9
- 0
mallinkAdmin/src/main/java/com/iformall/controller/market/WxCouponController.java Просмотреть файл

@@ -406,6 +406,15 @@ public class WxCouponController extends BaseController {
logger.debug("[" + getIpAddr() + "] WxCouponController::findById");
return new ResultData(wxCouponService.getVoById(id,getTenantInfo().getTenantId()));
}
@ApiOperation("根据id查询接口")
@GetMapping("/findParentCouponById")
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true)
@SystemControllerLog(description = "券投放-查询")
public ResultData findParentCouponById(@RequestParam Long id) {
logger.debug("[" + getIpAddr() + "] WxCouponController::findById");
return new ResultData(wxCouponService.getVoById(id,getTenantInfo().getParentTenantId()));
}

@TenantIgnore
@ApiOperation("卡营销列表接口")


Загрузка…
Отмена
Сохранить