commit
This commit is contained in:
+2
-2
@@ -1,5 +1,6 @@
|
|||||||
package com.budwk.app.zhgh.activity.declarereimbursement.reimbursement.controller;
|
package com.budwk.app.zhgh.activity.declarereimbursement.reimbursement.controller;
|
||||||
|
|
||||||
|
import cn.dev33.satoken.annotation.SaCheckLogin;
|
||||||
import cn.dev33.satoken.annotation.SaCheckPermission;
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
||||||
import cn.hutool.core.convert.NumberChineseFormatter;
|
import cn.hutool.core.convert.NumberChineseFormatter;
|
||||||
import cn.hutool.core.convert.NumberWordFormatter;
|
import cn.hutool.core.convert.NumberWordFormatter;
|
||||||
@@ -148,7 +149,6 @@ public class ActivityReimbursementMineController {
|
|||||||
|
|
||||||
@At
|
@At
|
||||||
@ApiOperation("活动报销,查看活动报销")
|
@ApiOperation("活动报销,查看活动报销")
|
||||||
@SaCheckPermission("activityReimbursement.mine")
|
|
||||||
public Result findOne(@Valid String id) {
|
public Result findOne(@Valid String id) {
|
||||||
Sql sql = Sqls.create("""
|
Sql sql = Sqls.create("""
|
||||||
SELECT
|
SELECT
|
||||||
@@ -170,7 +170,7 @@ public class ActivityReimbursementMineController {
|
|||||||
@At
|
@At
|
||||||
@ApiOperation("删除活动报销")
|
@ApiOperation("删除活动报销")
|
||||||
@Aop(TransAop.READ_COMMITTED)
|
@Aop(TransAop.READ_COMMITTED)
|
||||||
@SaCheckPermission("activityReimbursement.mine")
|
@SaCheckLogin
|
||||||
@SLog(tag = "活动报销", msg = "删除活动报销id: ${args[0]}")
|
@SLog(tag = "活动报销", msg = "删除活动报销id: ${args[0]}")
|
||||||
public Result onDelete(@Valid String id) {
|
public Result onDelete(@Valid String id) {
|
||||||
dao.clear(ActivityReimbursementInfo.class, Cnd.where("id", "=", id));
|
dao.clear(ActivityReimbursementInfo.class, Cnd.where("id", "=", id));
|
||||||
|
|||||||
Reference in New Issue
Block a user