|
|
|
@@ -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("卡营销列表接口") |
|
|
|
|