|
@@ -18,15 +18,23 @@
|
|
|
package org.hswebframework.web.controller.dictionary;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.hswebframework.web.authorization.annotation.Authorize;
|
|
|
import org.hswebframework.web.commons.entity.param.QueryParamEntity;
|
|
|
import org.hswebframework.web.controller.SimpleGenericEntityController;
|
|
|
+import org.hswebframework.web.controller.message.ResponseMessage;
|
|
|
+import org.hswebframework.web.dict.DictDefine;
|
|
|
+import org.hswebframework.web.dict.DictDefineRepository;
|
|
|
import org.hswebframework.web.dictionary.api.DictionaryService;
|
|
|
import org.hswebframework.web.dictionary.api.entity.DictionaryEntity;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import static org.hswebframework.web.controller.message.ResponseMessage.*;
|
|
|
+
|
|
|
/**
|
|
|
* 数据字典
|
|
|
*
|
|
@@ -38,15 +46,23 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@Api(value = "数据字典", tags = "数据字典-字典配置")
|
|
|
public class DictionaryController implements SimpleGenericEntityController<DictionaryEntity, String, QueryParamEntity> {
|
|
|
|
|
|
+ @Autowired
|
|
|
private DictionaryService dictionaryService;
|
|
|
|
|
|
@Autowired
|
|
|
- public void setDictionaryService(DictionaryService dictionaryService) {
|
|
|
- this.dictionaryService = dictionaryService;
|
|
|
- }
|
|
|
+ private DictDefineRepository repository;
|
|
|
|
|
|
@Override
|
|
|
public DictionaryService getService() {
|
|
|
return dictionaryService;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping("/define/{id:.+}")
|
|
|
+ @Authorize(merge = false)
|
|
|
+ @ApiOperation("获取数据字典定义信息")
|
|
|
+ public ResponseMessage<DictDefine> getDefineById(@PathVariable String id) {
|
|
|
+ return ok(repository.getDefine(id));
|
|
|
+ }
|
|
|
+
|
|
|
}
|