!428 删除方法无返回值时,方法注释上的@return,StringBuilder append() 改为链式调用
Merge pull request !428 from 我的世界有我/master
This commit is contained in:
		| @@ -91,7 +91,7 @@ public class DictUtils | |||||||
|                 { |                 { | ||||||
|                     if (value.equals(dict.getDictValue())) |                     if (value.equals(dict.getDictValue())) | ||||||
|                     { |                     { | ||||||
|                         propertyString.append(dict.getDictLabel() + separator); |                         propertyString.append(dict.getDictLabel()).append(separator); | ||||||
|                         break; |                         break; | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
| @@ -131,7 +131,7 @@ public class DictUtils | |||||||
|                 { |                 { | ||||||
|                     if (label.equals(dict.getDictLabel())) |                     if (label.equals(dict.getDictLabel())) | ||||||
|                     { |                     { | ||||||
|                         propertyString.append(dict.getDictValue() + separator); |                         propertyString.append(dict.getDictValue()).append(separator); | ||||||
|                         break; |                         break; | ||||||
|                     } |                     } | ||||||
|                 } |                 } | ||||||
|   | |||||||
| @@ -61,7 +61,6 @@ public interface ISysConfigService | |||||||
|      * 批量删除参数信息 |      * 批量删除参数信息 | ||||||
|      *  |      *  | ||||||
|      * @param configIds 需要删除的参数ID |      * @param configIds 需要删除的参数ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     public void deleteConfigByIds(Long[] configIds); |     public void deleteConfigByIds(Long[] configIds); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -39,7 +39,6 @@ public interface ISysDictDataService | |||||||
|      * 批量删除字典数据信息 |      * 批量删除字典数据信息 | ||||||
|      *  |      *  | ||||||
|      * @param dictCodes 需要删除的字典数据ID |      * @param dictCodes 需要删除的字典数据ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     public void deleteDictDataByIds(Long[] dictCodes); |     public void deleteDictDataByIds(Long[] dictCodes); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -54,7 +54,6 @@ public interface ISysDictTypeService | |||||||
|      * 批量删除字典信息 |      * 批量删除字典信息 | ||||||
|      *  |      *  | ||||||
|      * @param dictIds 需要删除的字典ID |      * @param dictIds 需要删除的字典ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     public void deleteDictTypeByIds(Long[] dictIds); |     public void deleteDictTypeByIds(Long[] dictIds); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -29,7 +29,6 @@ public interface ISysLogininforService | |||||||
|      * 批量删除系统登录日志 |      * 批量删除系统登录日志 | ||||||
|      *  |      *  | ||||||
|      * @param infoIds 需要删除的登录日志ID |      * @param infoIds 需要删除的登录日志ID | ||||||
|      * @return |  | ||||||
|      */ |      */ | ||||||
|     public int deleteLogininforByIds(Long[] infoIds); |     public int deleteLogininforByIds(Long[] infoIds); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -78,7 +78,6 @@ public interface ISysPostService | |||||||
|      *  |      *  | ||||||
|      * @param postIds 需要删除的岗位ID |      * @param postIds 需要删除的岗位ID | ||||||
|      * @return 结果 |      * @return 结果 | ||||||
|      * @throws Exception 异常 |  | ||||||
|      */ |      */ | ||||||
|     public int deletePostByIds(Long[] postIds); |     public int deletePostByIds(Long[] postIds); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -146,7 +146,6 @@ public class SysConfigServiceImpl implements ISysConfigService | |||||||
|      * 批量删除参数信息 |      * 批量删除参数信息 | ||||||
|      *  |      *  | ||||||
|      * @param configIds 需要删除的参数ID |      * @param configIds 需要删除的参数ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     @Override |     @Override | ||||||
|     public void deleteConfigByIds(Long[] configIds) |     public void deleteConfigByIds(Long[] configIds) | ||||||
|   | |||||||
| @@ -60,7 +60,6 @@ public class SysDictDataServiceImpl implements ISysDictDataService | |||||||
|      * 批量删除字典数据信息 |      * 批量删除字典数据信息 | ||||||
|      *  |      *  | ||||||
|      * @param dictCodes 需要删除的字典数据ID |      * @param dictCodes 需要删除的字典数据ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     @Override |     @Override | ||||||
|     public void deleteDictDataByIds(Long[] dictCodes) |     public void deleteDictDataByIds(Long[] dictCodes) | ||||||
|   | |||||||
| @@ -115,7 +115,6 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService | |||||||
|      * 批量删除字典类型信息 |      * 批量删除字典类型信息 | ||||||
|      *  |      *  | ||||||
|      * @param dictIds 需要删除的字典ID |      * @param dictIds 需要删除的字典ID | ||||||
|      * @return 结果 |  | ||||||
|      */ |      */ | ||||||
|     @Override |     @Override | ||||||
|     public void deleteDictTypeByIds(Long[] dictIds) |     public void deleteDictTypeByIds(Long[] dictIds) | ||||||
|   | |||||||
| @@ -46,7 +46,6 @@ public class SysLogininforServiceImpl implements ISysLogininforService | |||||||
|      * 批量删除系统登录日志 |      * 批量删除系统登录日志 | ||||||
|      *  |      *  | ||||||
|      * @param infoIds 需要删除的登录日志ID |      * @param infoIds 需要删除的登录日志ID | ||||||
|      * @return |  | ||||||
|      */ |      */ | ||||||
|     @Override |     @Override | ||||||
|     public int deleteLogininforByIds(Long[] infoIds) |     public int deleteLogininforByIds(Long[] infoIds) | ||||||
|   | |||||||
| @@ -137,7 +137,6 @@ public class SysPostServiceImpl implements ISysPostService | |||||||
|      *  |      *  | ||||||
|      * @param postIds 需要删除的岗位ID |      * @param postIds 需要删除的岗位ID | ||||||
|      * @return 结果 |      * @return 结果 | ||||||
|      * @throws Exception 异常 |  | ||||||
|      */ |      */ | ||||||
|     @Override |     @Override | ||||||
|     public int deletePostByIds(Long[] postIds) |     public int deletePostByIds(Long[] postIds) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user