类 SystemApiImpl

  • 所有已实现的接口:
    SystemApi

    @Primary
    @Validated
    @RestController
    @RequestMapping(value="/services/rest/v1/system",
                    produces="application/json")
    public class SystemApiImpl
    extends Object
    implements SystemApi
    系统管理组件
    从以下版本开始:
    9.6.0
    作者:
    dingzhaojun, qinman, mengjuhua
    Date:
    2022/2/10
    • 构造器详细资料

      • SystemApiImpl

        public SystemApiImpl()
    • 方法详细资料

      • getById

        public net.risesoft.pojo.Y9Result<net.risesoft.model.platform.System> getById​(@RequestParam("id") @NotBlank
                                                                                      @NotBlank String id)
        根据系统唯一标识获取系统
        指定者:
        getById 在接口中 SystemApi
        参数:
        id - 系统名称
        返回:
        Y9Result<System> 通用请求返回对象 - data 是系统对象
        从以下版本开始:
        9.6.2
      • getByName

        public net.risesoft.pojo.Y9Result<net.risesoft.model.platform.System> getByName​(@RequestParam("name") @NotBlank
                                                                                        @NotBlank String name)
        根据系统名称获取系统
        指定者:
        getByName 在接口中 SystemApi
        参数:
        name - 系统名称
        返回:
        Y9Result<System> 通用请求返回对象 - data 是系统对象
        从以下版本开始:
        9.6.0
      • registrySystem

        public net.risesoft.pojo.Y9Result<net.risesoft.model.platform.System> registrySystem​(@RequestParam("name")
                                                                                             String name,
                                                                                             @RequestParam("cnName")
                                                                                             String cnName,
                                                                                             @RequestParam("contextPath")
                                                                                             String contextPath,
                                                                                             @RequestParam("isvGuid")
                                                                                             String isvGuid)
        注册系统
        指定者:
        registrySystem 在接口中 SystemApi
        参数:
        name - 系统英文名称
        cnName - 系统名称
        contextPath - 系统上下文
        isvGuid - 租户id
        返回:
        Y9Result<System> 通用请求返回对象 - data 是注册的系统对象
        从以下版本开始:
        9.6.3