接口 AppApi
-
@Validated @Deprecated public interface AppApi
已过时。应用管理组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
方法概要
所有方法 实例方法 抽象方法 已过时的方法 修饰符和类型 方法 说明 net.risesoft.model.platform.AppfindById(@NotBlank String appId)已过时。根据应用id,获取应用信息net.risesoft.model.platform.AppfindBySystemIdAndCustomId(@NotBlank String systemId, @NotBlank String customId)已过时。根据系统唯一标示和自定义标识查找应用net.risesoft.model.platform.AppfindBySystemNameAndCustomId(@NotBlank String systemName, @NotBlank String customId)已过时。根据系统名和自定义标识查找应用List<net.risesoft.model.platform.App>listAccessAppForPerson(@NotBlank String tenantId, @NotBlank String personId, Integer authority)已过时。根据人员id和操作类型,获取有权限的应用列表List<net.risesoft.model.platform.App>listAccessAppForPosition(@NotBlank String tenantId, @NotBlank String positionId, Integer authority)已过时。根据人员id和操作类型,获取有权限的应用列表List<net.risesoft.model.platform.App>listByCustomId(@NotBlank String customId)已过时。根据 customId ,获取应用列表List<net.risesoft.model.platform.App>listBySystemId(@NotBlank String systemId)已过时。根据 systemId ,获取应用列表List<net.risesoft.model.platform.App>listBySystemName(@NotBlank String systemName)已过时。根据 systemName 获取应用列表net.risesoft.pojo.Y9Result<net.risesoft.model.platform.App>registryApp(@NotBlank String systemName, @NotBlank String name, @NotBlank String url, String customId, String tenantGuid)已过时。注册应用net.risesoft.pojo.Y9Result<net.risesoft.model.platform.App>registrySystemAndApp(@NotBlank String systemName, @NotBlank String systemCnName, String isvGuid, String contextPath, @NotBlank String appName, @NotBlank String url, String customId)已过时。注册系统和应用信息net.risesoft.model.platform.AppsaveIsvApp(net.risesoft.model.platform.App app)已过时。保存应用
-
-
-
方法详细资料
-
findById
@GetMapping("/findById") net.risesoft.model.platform.App findById(@RequestParam("appId") @NotBlank @NotBlank String appId)已过时。根据应用id,获取应用信息- 参数:
appId- 应用id- 返回:
- App
-
findBySystemIdAndCustomId
@GetMapping("/findBySystemIdAndCustomId") net.risesoft.model.platform.App findBySystemIdAndCustomId(@RequestParam("systemId") @NotBlank @NotBlank String systemId, @RequestParam("customId") @NotBlank @NotBlank String customId)已过时。根据系统唯一标示和自定义标识查找应用- 参数:
systemId- 系统唯一标识customId- customId- 返回:
- App
- 从以下版本开始:
- 9.6.0
-
findBySystemNameAndCustomId
@GetMapping("/findBySystemNameAndCustomId") net.risesoft.model.platform.App findBySystemNameAndCustomId(@RequestParam("systemName") @NotBlank @NotBlank String systemName, @RequestParam("customId") @NotBlank @NotBlank String customId)已过时。根据系统名和自定义标识查找应用- 参数:
systemName- 系统名customId- customId- 返回:
- App 应用
- 从以下版本开始:
- 9.6.0
-
listAccessAppForPerson
@GetMapping("/listAccessAppForPerson") List<net.risesoft.model.platform.App> listAccessAppForPerson(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId, @RequestParam("personId") @NotBlank @NotBlank String personId, @RequestParam("authority") Integer authority)已过时。根据人员id和操作类型,获取有权限的应用列表- 参数:
tenantId- 租户idpersonId- 人员idauthority- 操作类型(如:BROWSE、ADMIN)- 返回:
- List<App>
- 从以下版本开始:
- 9.6.0
-
listAccessAppForPosition
@GetMapping("/listAccessAppForPosition") List<net.risesoft.model.platform.App> listAccessAppForPosition(@RequestParam("tenantId") @NotBlank @NotBlank String tenantId, @RequestParam("positionId") @NotBlank @NotBlank String positionId, @RequestParam("authority") Integer authority)已过时。根据人员id和操作类型,获取有权限的应用列表- 参数:
tenantId- 租户idpositionId- 岗位idauthority- 操作类型AuthorityEnum- 返回:
- List<App> 应用列表
- 从以下版本开始:
- 9.6.0
-
listByCustomId
@GetMapping("/listByCustomId") List<net.risesoft.model.platform.App> listByCustomId(@RequestParam("customId") @NotBlank @NotBlank String customId)已过时。根据 customId ,获取应用列表- 参数:
customId- customId- 返回:
- List<App>
- 从以下版本开始:
- 9.6.0
-
listBySystemId
@GetMapping("/listBySystemId") List<net.risesoft.model.platform.App> listBySystemId(@RequestParam("systemId") @NotBlank @NotBlank String systemId)已过时。根据 systemId ,获取应用列表- 参数:
systemId- 系统Id- 返回:
- List<App>
- 从以下版本开始:
- 9.6.0
-
listBySystemName
@GetMapping("/listBySystemName") List<net.risesoft.model.platform.App> listBySystemName(@RequestParam("systemName") @NotBlank @NotBlank String systemName)已过时。根据 systemName 获取应用列表- 参数:
systemName- 系统名称- 返回:
- List<App>
- 从以下版本开始:
- 9.6.0
-
registryApp
@PostMapping("/registryApp") net.risesoft.pojo.Y9Result<net.risesoft.model.platform.App> registryApp(@RequestParam("systemName") @NotBlank @NotBlank String systemName, @RequestParam("name") @NotBlank @NotBlank String name, @RequestParam("url") @NotBlank @NotBlank String url, @RequestParam("customId") String customId, @RequestParam("tenantGuid") String tenantGuid)已过时。注册应用- 参数:
systemName- 系统名称name- 应用名称url- 链接地址customId- customIdtenantGuid- 租户id- 返回:
- Y9Result<App>
-
registrySystemAndApp
@PostMapping("/registrySystemAndApp") net.risesoft.pojo.Y9Result<net.risesoft.model.platform.App> registrySystemAndApp(@RequestParam("systemName") @NotBlank @NotBlank String systemName, @RequestParam("systemCnName") @NotBlank @NotBlank String systemCnName, @RequestParam("isvGuid") String isvGuid, @RequestParam("contextPath") String contextPath, @RequestParam("appName") @NotBlank @NotBlank String appName, @RequestParam("url") @NotBlank @NotBlank String url, @RequestParam("customId") String customId)已过时。注册系统和应用信息- 参数:
systemName- 系统名称systemCnName- 系统中文名称isvGuid- 租户idcontextPath- 系统上下文appName- 应用名称url- 链接地址customId- customId- 返回:
- Y9Result<App>
-
saveIsvApp
@PostMapping("/saveIsvApp") net.risesoft.model.platform.App saveIsvApp(@RequestBody net.risesoft.model.platform.App app)已过时。保存应用- 参数:
app- 应用实体类- 返回:
- App
- 从以下版本开始:
- 9.6.0
-
-