接口 OfficeFollowApi
-
public interface OfficeFollowApi我的关注接口- 作者:
- qinman, zhangchongjie
- Date:
- 2022/12/19
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 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
@GetMapping("/countByProcessInstanceId") net.risesoft.pojo.Y9Result<Integer> countByProcessInstanceId(@RequestParam("tenantId") String tenantId, @RequestParam("orgUnitId") String orgUnitId, @RequestParam("processInstanceId") String processInstanceId)根据流程实例id获取是否有关注- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessInstanceId- 流程实例id- 返回:
Y9Result<Integer>通用请求返回对象 - data 是关注数量- 从以下版本开始:
- 9.6.6
-
delOfficeFollow
@PostMapping("/delOfficeFollow") net.risesoft.pojo.Y9Result<Object> delOfficeFollow(@RequestParam("tenantId") String tenantId, @RequestParam("orgUnitId") String orgUnitId, @RequestParam("processInstanceIds") String processInstanceIds)取消关注- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idprocessInstanceIds- 流程实例id列表- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
deleteByProcessInstanceId
@PostMapping("/deleteByProcessInstanceId") net.risesoft.pojo.Y9Result<Object> deleteByProcessInstanceId(@RequestParam("tenantId") String tenantId, @RequestParam("processInstanceId") String processInstanceId)根据流程实例id删除关注- 参数:
tenantId- 租户idprocessInstanceId- 流程实例id- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
getFollowCount
@GetMapping("/getFollowCount") net.risesoft.pojo.Y9Result<Integer> getFollowCount(@RequestParam("tenantId") String tenantId, @RequestParam("orgUnitId") String orgUnitId)获取我的关注数量- 参数:
tenantId- 租户idorgUnitId- 人员、岗位id- 返回:
Y9Result<Integer>通用请求返回对象 - data 是我的关注数量- 从以下版本开始:
- 9.6.6
-
getFollowListBySystemName
@GetMapping("/getFollowListBySystemName") net.risesoft.pojo.Y9Page<OfficeFollowModel> getFollowListBySystemName(@RequestParam("tenantId") String tenantId, @RequestParam("orgUnitId") String orgUnitId, @RequestParam("systemName") String systemName, @RequestParam(value="searchName",required=false) String searchName, @RequestParam("page") int page, @RequestParam("rows") int rows)根据系统名称获取关注列表- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idsystemName- 系统名称searchName- 搜索词page- 页码rows- 条数- 返回:
Y9Page<OfficeFollowModel>通用分页请求返回对象 - rows 是关注模型信息- 从以下版本开始:
- 9.6.6
-
getOfficeFollowList
@GetMapping("/getOfficeFollowList") net.risesoft.pojo.Y9Page<OfficeFollowModel> getOfficeFollowList(@RequestParam("tenantId") String tenantId, @RequestParam("orgUnitId") String orgUnitId, @RequestParam(value="searchName",required=false) String searchName, @RequestParam("page") int page, @RequestParam("rows") int rows)获取关注列表- 参数:
tenantId- 租户idorgUnitId- 人员、岗位idsearchName- 搜索词page- 页码rows- 条数- 返回:
Y9Page<OfficeFollowModel>通用分页请求返回对象 - rows 是关注模型信息- 从以下版本开始:
- 9.6.6
-
saveOfficeFollow
@PostMapping(value="/saveOfficeFollow", consumes="application/json") net.risesoft.pojo.Y9Result<Object> saveOfficeFollow(@RequestParam("tenantId") String tenantId, @RequestBody OfficeFollowModel officeFollowModel)保存办件关注信息- 参数:
tenantId- 租户idofficeFollowModel- 关注信息- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
updateTitle
@PostMapping("/updateTitle") net.risesoft.pojo.Y9Result<Object> updateTitle(@RequestParam("tenantId") String tenantId, @RequestParam("processInstanceId") String processInstanceId, @RequestParam("documentTitle") String documentTitle)更新标题- 参数:
tenantId- 租户idprocessInstanceId- 流程实例iddocumentTitle- 文档标题- 返回:
Y9Result<Object>通用请求返回对象- 从以下版本开始:
- 9.6.6
-
-