类 OrgSyncApiImpl
- java.lang.Object
-
- net.risesoft.api.v0.org.OrgSyncApiImpl
-
- 所有已实现的接口:
OrgSyncApi
@Primary @Validated @RestController("v0OrgSyncApiImpl") @RequestMapping(value="/services/rest/orgSync", produces="application/json") @Deprecated public class OrgSyncApiImpl extends Object implements OrgSyncApi已过时。组织同步组件- 从以下版本开始:
- 9.6.0
- 作者:
- dingzhaojun, qinman, mengjuhua
- Date:
- 2022/2/10
-
-
构造器概要
构造器 构造器 说明 OrgSyncApiImpl()已过时。
-
方法概要
所有方法 实例方法 具体方法 已过时的方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<net.risesoft.model.platform.MessageOrg>fullSync(@NotBlank String appName, @NotBlank String tenantId, @NotBlank String organizationId)已过时。根据机构id,全量获取整个组织机构数据net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.MessageOrg>>incrSync(@NotBlank String appName, @NotBlank String tenantId)已过时。增量获取组织操作列表 系统记录了上一次同步的时间,从上一次同步时间往后获取数据
-
-
-
方法详细资料
-
fullSync
public net.risesoft.pojo.Y9Result<net.risesoft.model.platform.MessageOrg> fullSync(@RequestParam("appName") @NotBlank @NotBlank String appName, @RequestParam("tenantId") @NotBlank @NotBlank String tenantId, @RequestParam("organizationId") @NotBlank @NotBlank String organizationId)已过时。根据机构id,全量获取整个组织机构数据- 指定者:
fullSync在接口中OrgSyncApi- 参数:
appName- 应用名称tenantId- 租户idorganizationId- 机构id- 返回:
Y9Result<MessageOrg>整个组织机构对象集合- 从以下版本开始:
- 9.6.0
-
incrSync
public net.risesoft.pojo.Y9Result<List<net.risesoft.model.platform.MessageOrg>> incrSync(@RequestParam("appName") @NotBlank @NotBlank String appName, @RequestParam("tenantId") @NotBlank @NotBlank String tenantId)
已过时。增量获取组织操作列表 系统记录了上一次同步的时间,从上一次同步时间往后获取数据- 指定者:
incrSync在接口中OrgSyncApi- 参数:
appName- 应用名称tenantId- 租户id- 返回:
Y9Result<List<MessageOrg>>事件列表- 从以下版本开始:
- 9.6.0
-
-