记得上下班打卡 | git大法好,push需谨慎

Commit a2f2ab12 authored by jiangxiulong's avatar jiangxiulong

log title

parent dc8c9c8c
......@@ -55,7 +55,7 @@ public class KylinOrderRefundAdminController extends BaseController {
return prefix + "/refund";
}
@Log(title = "订单退款列表", businessType = BusinessType.DETAIL)
@Log(title = "订单退款详情", businessType = BusinessType.DETAIL)
@RequiresPermissions("kylin:refund:detail")
@GetMapping(value = "/details/{orderRefundId}")
public String detail(@PathVariable("orderRefundId") String orderRefundId, ModelMap mmap) {
......@@ -79,14 +79,14 @@ public class KylinOrderRefundAdminController extends BaseController {
return prefix + "/applyView";
}
@Log(title = "订单退款列表", businessType = BusinessType.DETAIL)
@Log(title = "申请退款检测详情", businessType = BusinessType.DETAIL)
@PostMapping("applyOrder")
@ResponseBody
public AjaxResult applyOrder(RefundApplyParam refundApplyParam) {
return kylinOrderRefundsServiceImpl.orderDetails(refundApplyParam.getOrderCode());
}
@Log(title = "订单退款列表", businessType = BusinessType.INSERT)
@Log(title = "申请退款", businessType = BusinessType.INSERT)
@RequiresPermissions("kylin:refund:apply")
@PostMapping("apply")
@ResponseBody
......@@ -105,7 +105,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
}
@Log(title = "订单退款列表", businessType = BusinessType.CANCEL)
@Log(title = "取消退款", businessType = BusinessType.CANCEL)
@RequiresPermissions("kylin:refund:cancel")
@PostMapping("cancel")
@ResponseBody
......@@ -125,7 +125,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
}
@Log(title = "订单退款列表", businessType = BusinessType.REAPPLY)
@Log(title = "重新提交退款", businessType = BusinessType.REAPPLY)
@RequiresPermissions("kylin:refund:reapply")
@PostMapping("reapply")
@ResponseBody
......@@ -146,7 +146,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
// 运营审核
@Log(title = "订单退款列表", businessType = BusinessType.AUDIT)
@Log(title = "运营审核", businessType = BusinessType.AUDIT)
@RequiresPermissions("kylin:refund:review")
@PostMapping("review")
@ResponseBody
......@@ -175,7 +175,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
// 票务审核
@Log(title = "票务审核退款", businessType = BusinessType.AUDIT3)
@Log(title = "票务审核", businessType = BusinessType.AUDIT3)
@RequiresPermissions("kylin:refund:ticketAudit")
@PostMapping("ticketAudit")
@ResponseBody
......@@ -198,7 +198,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
// 财务审核
@Log(title = "订单退款列表", businessType = BusinessType.AUDIT2)
@Log(title = "财务审核", businessType = BusinessType.AUDIT2)
@RequiresPermissions("kylin:refund:execute")
@PostMapping("execute")
@ResponseBody
......@@ -240,7 +240,7 @@ public class KylinOrderRefundAdminController extends BaseController {
}
// 主动完成退款 没有批量
@Log(title = "订单退款列表", businessType = BusinessType.COMPLETE_REFUND)
@Log(title = "主动完成退款", businessType = BusinessType.COMPLETE_REFUND)
@RequiresPermissions("kylin:refund:completed")
@PostMapping("completed")
@ResponseBody
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment