feat: There is no way the, 跑跑跑 跑数据 重置es
This commit is contained in:
@@ -66,7 +66,7 @@ public interface DicTypeEODao extends BaseMapper<DicTypeEO> {
|
||||
|
||||
public List<SelectionResult> getDicTypeByDicId(@Param("dicId") String dicId);
|
||||
|
||||
public String getDicNamesByCodes(@Param("codeList") List<String> codeList);
|
||||
public String getDicNamesByCodes(@Param("codeList") List<String> codeList, @Param("dicId") String dicId);
|
||||
|
||||
public int insertSelective(DicTypeEO dictionaryEO);
|
||||
|
||||
|
||||
@@ -64,7 +64,7 @@ public interface IDicTypeEOService extends IService<DicTypeEO> {
|
||||
|
||||
public List<SelectionResult> getDicTypeByDicId(String dicId);
|
||||
|
||||
public String getDicNamesByCodes(List<String> codeList);
|
||||
public String getDicNamesByCodes(List<String> codeList,String dicId);
|
||||
|
||||
public int insertSelective(DicTypeEO dictionaryEO);
|
||||
|
||||
|
||||
@@ -391,8 +391,8 @@ public class DicTypeEOServiceImpl extends ServiceImpl<DicTypeEODao,DicTypeEO> im
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getDicNamesByCodes(List<String> codeList) {
|
||||
return dicTypeEODao.getDicNamesByCodes(codeList);
|
||||
public String getDicNamesByCodes(List<String> codeList,String dicId) {
|
||||
return dicTypeEODao.getDicNamesByCodes(codeList,dicId);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user