|
|
|
@@ -64,7 +64,7 @@ public class WxCouponActionLogController extends BaseController { |
|
|
|
@SystemControllerLog(description = "注券记录-删除") |
|
|
|
public ResultData delete(Long id) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxCouponActionLogController::delete"); |
|
|
|
wxCouponActionLogService.deleteById(id); |
|
|
|
wxCouponActionLogService.deleteById(id,getTenantInfo().getTenantId()); |
|
|
|
return new ResultData(Result.SUCCESS, "删除成功", null); |
|
|
|
} |
|
|
|
|
|
|
|
@@ -74,7 +74,7 @@ public class WxCouponActionLogController extends BaseController { |
|
|
|
@SystemControllerLog(description = "注券记录-查询") |
|
|
|
public ResultData findById(Long id) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxCouponActionLogController::findById"); |
|
|
|
return new ResultData(Result.SUCCESS, "查询成功", wxCouponActionLogService.getById(id)); |
|
|
|
return new ResultData(Result.SUCCESS, "查询成功", wxCouponActionLogService.getById(id,getTenantInfo().getTenantId())); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|