初始化

This commit is contained in:
2022-06-21 20:47:46 +08:00
parent b666a24a98
commit 59da3376c1
1246 changed files with 129600 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package com.njcn.web.controller;
import com.njcn.common.utils.ReflectCommonUtil;
/**
* @author hongawen
* @version 1.0.0
* @date 2021年04月21日 14:21
*/
public class BaseController {
/**
* 获取当前类指定方法上@ApiOperate内容
* @param methodName 方法名
*/
public String getMethodDescribe(String methodName){
return ReflectCommonUtil.getMethodDescribeByClassAndMethodName(this.getClass(),methodName);
}
}