代码 修改

This commit is contained in:
2022-12-07 11:23:45 +08:00
parent 298df5d2df
commit f4199191b6
4 changed files with 33 additions and 8 deletions

View File

@@ -27,6 +27,6 @@ public class DictDetailQueryCriteria {
private String code;
private String name;
private String dictName;
private String dict_id;
}

View File

@@ -53,6 +53,7 @@ public class DictDetailServiceImpl implements DictDetailService {
JSONObject map = new JSONObject();
map.put("flag", "2");
map.put("code", criteria.getCode());
map.put("dictName", criteria.getDictName());
JSONObject json = WQL.getWO("SYS_DICT").addParamMap(map).pageQuery(WqlUtil.getHttpContext(pageable), "dict_sort asc");
return json;
}

View File

@@ -16,6 +16,7 @@
输入.flag TYPEAS s_string
输入.blurry TYPEAS s_string
输入.code TYPEAS s_string
输入.dictName TYPEAS s_string
[临时表]
@@ -70,6 +71,9 @@
OPTION 输入.code <> ""
dict.code = 输入.code
ENDOPTION
OPTION 输入.dictName <> ""
dict.code = 输入.dictName
ENDOPTION
ENDSELECT
ENDPAGEQUERY
ENDIF