修复注释与参数名称不对应

master
Sxile 5 years ago
parent 230d4170e1
commit 9aee5142fd

@ -98,7 +98,8 @@ public class DataScopeAspect
* *
* @param joinPoint * @param joinPoint
* @param user * @param user
* @param alias * @param deptAlias
* @param userAlias
*/ */
public static void dataScopeFilter(JoinPoint joinPoint, SysUser user, String deptAlias, String userAlias) public static void dataScopeFilter(JoinPoint joinPoint, SysUser user, String deptAlias, String userAlias)
{ {

@ -155,7 +155,7 @@ public class PermissionService
/** /**
* *
* *
* @param permissions * @param authorities
* @param permission * @param permission
* @return * @return
*/ */

@ -21,7 +21,7 @@ public class GenTableColumnServiceImpl implements IGenTableColumnService
/** /**
* *
* *
* @param genTableColumn * @param tableId
* @return * @return
*/ */
@Override @Override

@ -13,7 +13,7 @@ public interface IGenTableColumnService
/** /**
* *
* *
* @param genTableColumn * @param tableId
* @return * @return
*/ */
public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId); public List<GenTableColumn> selectGenTableColumnListByTableId(Long tableId);

@ -195,7 +195,7 @@ public class GenUtils
/** /**
* *
* *
* @param name * @param text
* @return * @return
*/ */
public static String replaceText(String text) public static String replaceText(String text)

@ -190,7 +190,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param column * @param columns
* @return * @return
*/ */
public static HashSet<String> getImportList(List<GenTableColumn> columns) public static HashSet<String> getImportList(List<GenTableColumn> columns)
@ -227,7 +227,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreecode(JSONObject paramsObj) public static String getTreecode(JSONObject paramsObj)
@ -242,7 +242,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeParentCode(JSONObject paramsObj) public static String getTreeParentCode(JSONObject paramsObj)
@ -257,7 +257,7 @@ public class VelocityUtils
/** /**
* *
* *
* @param options * @param paramsObj
* @return * @return
*/ */
public static String getTreeName(JSONObject paramsObj) public static String getTreeName(JSONObject paramsObj)

@ -65,7 +65,7 @@ public abstract class AbstractQuartzJob implements Job
* *
* *
* @param context * @param context
* @param sysScheduleJob * @param sysJob
*/ */
protected void after(JobExecutionContext context, SysJob sysJob, Exception e) protected void after(JobExecutionContext context, SysJob sysJob, Exception e)
{ {

@ -65,7 +65,7 @@ public class JobInvokeUtil
/** /**
* class * class
* *
* @param str * @param invokeTarget
* @return true false * @return true false
*/ */
public static boolean isValidClassName(String invokeTarget) public static boolean isValidClassName(String invokeTarget)

@ -7,7 +7,7 @@ public interface ISysPermissionService
/** /**
* *
* *
* @param user * @param userId Id
* @return * @return
*/ */
public Set<String> getRolePermission(Long userId); public Set<String> getRolePermission(Long userId);
@ -15,7 +15,7 @@ public interface ISysPermissionService
/** /**
* *
* *
* @param user * @param userId Id
* @return * @return
*/ */
public Set<String> getMenuPermission(Long userId); public Set<String> getMenuPermission(Long userId);

@ -22,9 +22,10 @@ public class SysPermissionServiceImpl implements ISysPermissionService
/** /**
* *
* *
* @param user * @param userId Id
* @return * @return
*/ */
@Override
public Set<String> getRolePermission(Long userId) public Set<String> getRolePermission(Long userId)
{ {
Set<String> roles = new HashSet<String>(); Set<String> roles = new HashSet<String>();
@ -43,9 +44,10 @@ public class SysPermissionServiceImpl implements ISysPermissionService
/** /**
* *
* *
* @param user * @param userId Id
* @return * @return
*/ */
@Override
public Set<String> getMenuPermission(Long userId) public Set<String> getMenuPermission(Long userId)
{ {
Set<String> perms = new HashSet<String>(); Set<String> perms = new HashSet<String>();

Loading…
Cancel
Save