逻辑修改

This commit is contained in:
MHW
2026-04-13 17:26:56 +08:00
parent aefc2c688e
commit eff0b87da8

View File

@@ -2,6 +2,7 @@ package com.solution.system.mapper;
import com.solution.system.domain.PlatformTree;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -20,5 +21,5 @@ public interface PlatformMapper {
* @param underlingEnglishName
* @return
*/
List<String> selectPlatformChineseName(List<String> underlingEnglishName);
List<String> selectPlatformChineseName(@Param("underlingEnglishName") List<String> underlingEnglishName);
}