标签-修改
This commit is contained in:
+4
-3
@@ -335,7 +335,7 @@ public class SysDictController {
|
||||
return result;
|
||||
}
|
||||
/**
|
||||
* 查询选项内容--数据字典名称
|
||||
* 查询被删除的列表
|
||||
* @return
|
||||
*/
|
||||
@GetMapping(value = "/deleteList")
|
||||
@@ -602,9 +602,10 @@ public class SysDictController {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 查询被删除的列表
|
||||
* @return
|
||||
* 查询选项内容
|
||||
*
|
||||
*/
|
||||
@GetMapping(value = "/queryDictName")
|
||||
public Result<List<SysDict>> queryDictName(SysDict sysDict) {
|
||||
|
||||
+1
-1
@@ -106,7 +106,7 @@ public class SysDict implements Serializable {
|
||||
/**
|
||||
* 表单控件类型
|
||||
*/
|
||||
@Excel(name = "标签类型 1下拉选择 2树形结构", width = 15)
|
||||
@Excel(name = "标签类型 1下拉选择 2树形结构", width = 15,dicCode = "attribute_type")
|
||||
@ApiModelProperty(value = "标签类型 1下拉选择 2树形结构")
|
||||
@Dict(dicCode = "attribute_type")
|
||||
private java.lang.String attributeType;
|
||||
|
||||
+1
-1
@@ -198,7 +198,7 @@ public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> impl
|
||||
@Override
|
||||
public List<SysDict> queryDictName(SysDict sysDict) {
|
||||
QueryWrapper<SysDict> QueryWrapper = new QueryWrapper<>();
|
||||
QueryWrapper.select("id", "dict_name").eq("is_tag_dict",1);
|
||||
QueryWrapper.select("id", "dict_name","attribute_type").eq("is_tag_dict",1);
|
||||
return list(QueryWrapper);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user