!428 删除方法无返回值时,方法注释上的@return,StringBuilder append() 改为链式调用

Merge pull request !428 from 我的世界有我/master
feature/model
若依 3 years ago committed by Gitee
commit a91d7cdd72
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

@ -91,7 +91,7 @@ public class DictUtils
{
if (value.equals(dict.getDictValue()))
{
propertyString.append(dict.getDictLabel() + separator);
propertyString.append(dict.getDictLabel()).append(separator);
break;
}
}
@ -131,7 +131,7 @@ public class DictUtils
{
if (label.equals(dict.getDictLabel()))
{
propertyString.append(dict.getDictValue() + separator);
propertyString.append(dict.getDictValue()).append(separator);
break;
}
}

@ -61,7 +61,6 @@ public interface ISysConfigService
*
*
* @param configIds ID
* @return
*/
public void deleteConfigByIds(Long[] configIds);

@ -39,7 +39,6 @@ public interface ISysDictDataService
*
*
* @param dictCodes ID
* @return
*/
public void deleteDictDataByIds(Long[] dictCodes);

@ -54,7 +54,6 @@ public interface ISysDictTypeService
*
*
* @param dictIds ID
* @return
*/
public void deleteDictTypeByIds(Long[] dictIds);

@ -29,7 +29,6 @@ public interface ISysLogininforService
*
*
* @param infoIds ID
* @return
*/
public int deleteLogininforByIds(Long[] infoIds);

@ -78,7 +78,6 @@ public interface ISysPostService
*
* @param postIds ID
* @return
* @throws Exception
*/
public int deletePostByIds(Long[] postIds);

@ -146,7 +146,6 @@ public class SysConfigServiceImpl implements ISysConfigService
*
*
* @param configIds ID
* @return
*/
@Override
public void deleteConfigByIds(Long[] configIds)

@ -60,7 +60,6 @@ public class SysDictDataServiceImpl implements ISysDictDataService
*
*
* @param dictCodes ID
* @return
*/
@Override
public void deleteDictDataByIds(Long[] dictCodes)

@ -115,7 +115,6 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService
*
*
* @param dictIds ID
* @return
*/
@Override
public void deleteDictTypeByIds(Long[] dictIds)

@ -46,7 +46,6 @@ public class SysLogininforServiceImpl implements ISysLogininforService
*
*
* @param infoIds ID
* @return
*/
@Override
public int deleteLogininforByIds(Long[] infoIds)

@ -137,7 +137,6 @@ public class SysPostServiceImpl implements ISysPostService
*
* @param postIds ID
* @return
* @throws Exception
*/
@Override
public int deletePostByIds(Long[] postIds)

Loading…
Cancel
Save