程序包 net.risesoft.api
类 OfficeFollowApiImpl
- java.lang.Object
-
- net.risesoft.api.OfficeFollowApiImpl
-
- 所有已实现的接口:
OfficeFollowApi
@RestController @RequestMapping(value="/services/rest/officeFollow", produces="application/json") public class OfficeFollowApiImpl extends Object implements OfficeFollowApi我的关注接口- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
构造器概要
构造器 构造器 说明 OfficeFollowApiImpl()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 net.risesoft.pojo.Y9Result<Integer>countByProcessInstanceId(String tenantId, String orgUnitId, String processInstanceId)根据流程实例id获取是否有关注net.risesoft.pojo.Y9Result<Object>deleteByProcessInstanceId(String tenantId, String processInstanceId)根据流程实例id删除关注net.risesoft.pojo.Y9Result<Object>delOfficeFollow(String tenantId, String orgUnitId, String processInstanceIds)取消关注net.risesoft.pojo.Y9Result<Integer>getFollowCount(String tenantId, String orgUnitId)获取我的关注数量net.risesoft.pojo.Y9Page<OfficeFollowModel>getFollowListBySystemName(String tenantId, String orgUnitId, String systemName, String searchName, int page, int rows)根据系统名称获取关注列表net.risesoft.pojo.Y9Page<OfficeFollowModel>getOfficeFollowList(String tenantId, String orgUnitId, String searchName, int page, int rows)获取关注列表net.risesoft.pojo.Y9Result<Object>saveOfficeFollow(String tenantId, OfficeFollowModel officeFollowModel)保存办件关注信息net.risesoft.pojo.Y9Result<Object>updateTitle(String tenantId, String processInstanceId, String documentTitle)更新标题
-
-
-
方法详细资料
-
countByProcessInstanceId
public net.risesoft.pojo.Y9Result<Integer> countByProcessInstanceId(@RequestParam String tenantId, @RequestParam String orgUnitId, @RequestParam String processInstanceId)
根据流程实例id获取是否有关注- 指定者:
countByProcessInstanceId在接口中OfficeFollowApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessInstanceId- 流程实例id- 返回:
Y9Result<Integer>通用请求返回对象 - data 是关注数量- 从以下版本开始:
- 9.6.6
-
delOfficeFollow
public net.risesoft.pojo.Y9Result<Object> delOfficeFollow(@RequestParam String tenantId, @RequestParam String orgUnitId, @RequestParam String processInstanceIds)
取消关注- 指定者:
delOfficeFollow在接口中OfficeFollowApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessInstanceIds- 流程实例id列表- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
deleteByProcessInstanceId
public net.risesoft.pojo.Y9Result<Object> deleteByProcessInstanceId(@RequestParam String tenantId, @RequestParam String processInstanceId)
根据流程实例id删除关注- 指定者:
deleteByProcessInstanceId在接口中OfficeFollowApi- 参数:
tenantId- 租户idprocessInstanceId- 流程实例id- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
getFollowCount
public net.risesoft.pojo.Y9Result<Integer> getFollowCount(@RequestParam String tenantId, @RequestParam String orgUnitId)
获取我的关注数量- 指定者:
getFollowCount在接口中OfficeFollowApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位id- 返回:
Y9Result<Integer>通用请求返回对象 - data 是我的关注数量- 从以下版本开始:
- 9.6.6
-
getFollowListBySystemName
public net.risesoft.pojo.Y9Page<OfficeFollowModel> getFollowListBySystemName(@RequestParam String tenantId, @RequestParam String orgUnitId, @RequestParam String systemName, String searchName, @RequestParam int page, @RequestParam int rows)
根据系统名称获取关注列表- 指定者:
getFollowListBySystemName在接口中OfficeFollowApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idsystemName- 系统名称searchName- 搜索词page- 页码rows- 条数- 返回:
Y9Page<OfficeFollowModel>通用分页请求返回对象 - rows 是关注模型信息- 从以下版本开始:
- 9.6.6
-
getOfficeFollowList
public net.risesoft.pojo.Y9Page<OfficeFollowModel> getOfficeFollowList(@RequestParam String tenantId, @RequestParam String orgUnitId, String searchName, @RequestParam int page, @RequestParam int rows)
获取关注列表- 指定者:
getOfficeFollowList在接口中OfficeFollowApi- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idsearchName- 搜索词page- 页码rows- 条数- 返回:
Y9Page<OfficeFollowModel>通用分页请求返回对象 - rows 是关注模型信息- 从以下版本开始:
- 9.6.6
-
saveOfficeFollow
public net.risesoft.pojo.Y9Result<Object> saveOfficeFollow(@RequestParam String tenantId, @RequestBody OfficeFollowModel officeFollowModel)
保存办件关注信息- 指定者:
saveOfficeFollow在接口中OfficeFollowApi- 参数:
tenantId- 租户idofficeFollowModel- 关注信息- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
updateTitle
public net.risesoft.pojo.Y9Result<Object> updateTitle(@RequestParam String tenantId, @RequestParam String processInstanceId, @RequestParam String documentTitle)
更新标题- 指定者:
updateTitle在接口中OfficeFollowApi- 参数:
tenantId- 租户idprocessInstanceId- 流程实例iddocumentTitle- 文档标题- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
-