接口 OptionValueApi


  • @Validated
    public interface OptionValueApi
    字典表管理组件
    从以下版本开始:
    9.6.0
    作者:
    dingzhaojun, qinman, mengjuhua
    Date:
    2022/2/10
    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.OptionValue>> listByType​(@NotBlank String tenantId, @NotBlank String type)
      根据字典类型查找字典数据列表
    • 方法详细资料

      • listByType

        @GetMapping("/listByType")
        net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.OptionValue>> listByType​(@RequestParam("tenantId") @NotBlank
                                                                                             @NotBlank String tenantId,
                                                                                             @RequestParam("type") @NotBlank
                                                                                             @NotBlank String type)
        根据字典类型查找字典数据列表
        参数:
        tenantId - 租户id
        type - 类型
        返回:
        Y9Result<List<OptionValue>> 通用请求返回对象 - data 是查找的字典数据列表
        从以下版本开始:
        9.6.0