Package net.risesoft.api
Class OptionClassApiImpl
- java.lang.Object
-
- net.risesoft.api.OptionClassApiImpl
-
- All Implemented Interfaces:
OptionClassApi
@RestController @RequestMapping(value="/services/rest/optionClass", produces="application/json") public class OptionClassApiImpl extends Object implements OptionClassApi数据字典接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description OptionClassApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<List<Y9FormOptionValueModel>>findAll(String tenantId)net.risesoft.pojo.Y9Result<List<Y9FormOptionValueModel>>getOptionValueList(String tenantId, String type)获取数据字典列表
-
-
-
Method Detail
-
getOptionValueList
public net.risesoft.pojo.Y9Result<List<Y9FormOptionValueModel>> getOptionValueList(@RequestParam String tenantId, @RequestParam String type)
获取数据字典列表- Specified by:
getOptionValueListin interfaceOptionClassApi- Parameters:
tenantId- 租户idtype- 字典标识- Returns:
Y9Result<List<Y9FormOptionValueModel>>通用请求返回对象 -data是数据字典列表- Since:
- 9.6.6
-
findAll
public net.risesoft.pojo.Y9Result<List<Y9FormOptionValueModel>> findAll(String tenantId)
- Specified by:
findAllin interfaceOptionClassApi
-
-