程序包 net.risesoft.api
类 ItemApiImpl
- java.lang.Object
-
- net.risesoft.api.ItemApiImpl
-
-
构造器概要
构造器 构造器 说明 ItemApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<List<ItemModel>>findAll(String tenantId, String systemName)根据系统名称获取事项net.risesoft.pojo.Y9Result<ItemModel>findByProcessDefinitionKey(String tenantId, String processDefinitionKey)根据流程的定义Key查找对应的事项net.risesoft.pojo.Y9Result<List<ItemModel>>getAllItem(String tenantId)获取所有事项列表net.risesoft.pojo.Y9Result<List<ItemModel>>getAllItemList(String tenantId)获取所有事项net.risesoft.pojo.Y9Result<ItemModel>getByItemId(String tenantId, String itemId)根据事项id获取事项net.risesoft.pojo.Y9Result<String>getFirstItem(String tenantId, String orgUnitId)获取有权限的首个事项idnet.risesoft.pojo.Y9Result<String>getFormIdByItemId(String tenantId, String itemId, String processDefinitionKey)根据事项id获取绑定的表单idnet.risesoft.pojo.Y9Result<List<ItemListModel>>getItemList(String tenantId, String orgUnitId)获取新建事项列表net.risesoft.pojo.Y9Result<List<ItemMappingConfModel>>getItemMappingConf(String tenantId, String itemId, String mappingId)获取事项系统字段映射配置net.risesoft.pojo.Y9Result<List<ItemSystemListModel>>getItemSystem(String tenantId)获取事项系统net.risesoft.pojo.Y9Result<List<ItemListModel>>getMyItemList(String tenantId, String orgUnitId)获取个人有权限事项列表net.risesoft.pojo.Y9Result<Boolean>hasProcessDefinitionByKey(String tenantId, String processDefinitionKey)判断该租户是否有流程定义
-
-
-
方法详细资料
-
findAll
public net.risesoft.pojo.Y9Result<List<ItemModel>> findAll(@RequestParam String tenantId, @RequestParam String systemName)
根据系统名称获取事项
-
findByProcessDefinitionKey
public net.risesoft.pojo.Y9Result<ItemModel> findByProcessDefinitionKey(@RequestParam String tenantId, @RequestParam String processDefinitionKey)
根据流程的定义Key查找对应的事项- 指定者:
findByProcessDefinitionKey在接口中ItemApi- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<ItemModel>通用请求返回对象 - data 是事项信息- 从以下版本开始:
- 9.6.6
-
getAllItem
public net.risesoft.pojo.Y9Result<List<ItemModel>> getAllItem(@RequestParam String tenantId)
获取所有事项列表- 指定者:
getAllItem在接口中ItemApi- 参数:
tenantId- 租户id- 返回:
Y9Result<List<ItemModel>>通用请求返回对象 - data 是事项列表- 从以下版本开始:
- 9.6.6
-
getAllItemList
public net.risesoft.pojo.Y9Result<List<ItemModel>> getAllItemList(@RequestParam String tenantId)
获取所有事项- 指定者:
getAllItemList在接口中ItemApi- 参数:
tenantId- 租户id- 返回:
Y9Result<List<ItemModel>>通用请求返回对象 - data 是事项列表- 从以下版本开始:
- 9.6.6
-
getByItemId
public net.risesoft.pojo.Y9Result<ItemModel> getByItemId(@RequestParam String tenantId, @RequestParam String itemId)
根据事项id获取事项- 指定者:
getByItemId在接口中ItemApi- 参数:
tenantId- 租户iditemId- 事项id- 返回:
Y9Result<ItemModel>通用请求返回对象 - data 是事项信息- 从以下版本开始:
- 9.6.6
-
getFirstItem
public net.risesoft.pojo.Y9Result<String> getFirstItem(@RequestParam String tenantId, @RequestParam String orgUnitId)
获取有权限的首个事项id- 指定者:
getFirstItem在接口中ItemApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位id- 返回:
Y9Result<String>通用请求返回对象 - data 是事项id- 从以下版本开始:
- 9.6.6
-
getFormIdByItemId
public net.risesoft.pojo.Y9Result<String> getFormIdByItemId(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String processDefinitionKey)
根据事项id获取绑定的表单id- 指定者:
getFormIdByItemId在接口中ItemApi- 参数:
tenantId- 租户IditemId- 事项idprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<String>通用请求返回对象 - data 是表单id- 从以下版本开始:
- 9.6.6
-
getItemList
public net.risesoft.pojo.Y9Result<List<ItemListModel>> getItemList(@RequestParam String tenantId, @RequestParam String orgUnitId)
获取新建事项列表- 指定者:
getItemList在接口中ItemApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位id- 返回:
Y9Result<List<ItemListModel>>通用请求返回对象 - data 是事项列表- 从以下版本开始:
- 9.6.6
-
getItemMappingConf
public net.risesoft.pojo.Y9Result<List<ItemMappingConfModel>> getItemMappingConf(@RequestParam String tenantId, @RequestParam String itemId, @RequestParam String mappingId)
获取事项系统字段映射配置- 指定者:
getItemMappingConf在接口中ItemApi- 参数:
tenantId- 租户IditemId- 事项idmappingId- 系统标识- 返回:
Y9Result<List<ItemMappingConfModel>>通用请求返回对象 - data 是事项映射列表- 从以下版本开始:
- 9.6.6
-
getItemSystem
public net.risesoft.pojo.Y9Result<List<ItemSystemListModel>> getItemSystem(@RequestParam String tenantId)
获取事项系统- 指定者:
getItemSystem在接口中ItemApi- 参数:
tenantId- 租户id- 返回:
Y9Result<List<ItemSystemListModel>>通用请求返回对象 - data 是事项系统列表- 从以下版本开始:
- 9.6.6
-
getMyItemList
public net.risesoft.pojo.Y9Result<List<ItemListModel>> getMyItemList(@RequestParam String tenantId, @RequestParam String orgUnitId)
获取个人有权限事项列表- 指定者:
getMyItemList在接口中ItemApi- 参数:
tenantId- 租户IdorgUnitId- 人员、岗位id- 返回:
Y9Result<List<ItemListModel>>通用请求返回对象 - data 是新建事项列表- 从以下版本开始:
- 9.6.6
-
hasProcessDefinitionByKey
public net.risesoft.pojo.Y9Result<Boolean> hasProcessDefinitionByKey(@RequestParam String tenantId, @RequestParam String processDefinitionKey)
判断该租户是否有流程定义- 指定者:
hasProcessDefinitionByKey在接口中ItemApi- 参数:
tenantId- 租户IdprocessDefinitionKey- 流程定义Key- 返回:
Y9Result<Boolean>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
-