Commit ebd672c9 authored by 1650842865's avatar 1650842865

查询品牌去掉转大写,根据输入内容查询

parent e98acef5
......@@ -30,9 +30,9 @@ public class EpResourceSearchController {
@EasySearch(queryName = "queryBrand")
public Map<String, Object> queryBrand(SDO sdo) throws IOException {
String param = sdo.getString("paramValue");
if (StringUtil.isNotBlank(param)){
param = param.toUpperCase();
}
// if (StringUtil.isNotBlank(param)){
// param = param.toUpperCase();
// }
List<Map<String, String>> mapList = new ArrayList<>();
mapList = epApplication.queryEpBrand(param);
return sapDictionaryApplication.initEasySearchModel( mapList, param, sdo);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment