Package net.risesoft.service
Interface ExtendedContentService
-
- All Known Implementing Classes:
ExtendedContentServiceImpl
public interface ExtendedContentService- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcountByProcessSerialNumberAndUserIdAndCategory(String processSerialNumber, String userid, String category)Description: 根据人员统计intcountByProcSerialNumberAndCategory(String processSerialNumber, String category)Description: 根据processSerialNumber获取统计intcountByTaskIdAndCategory(String taskId, String category)Description: 根据taskId获取统计net.risesoft.pojo.Y9Result<Object>delete(String id)删除内容ExtendedContentfindById(String id)根据id获取内容IntegergetCountPersonal(String processSerialNumber, String category, String personId)根据人员id,流程编号统计当前类型的内容数IntegergetCountPersonal(String processSerialNumber, String taskId, String category, String personId)根据人员id统计当前任务,当前类型的内容数ExtendedContentgetNewConentByProcessSerialNumber(String processSerialNumber, String category)获取最新填写的内容ExtendedContentgetResultByUserIdAndCategory(String processSerialNumber, String userid, String category)根据人员Id和流程编号获取办理信息List<Map<String,Object>>listContents(String processSerialNumber, String taskId, String itembox, String category)获取内容列表org.springframework.ui.ModelnewOrModifyContent(String processSerialNumber, String taskId, String category, String id, org.springframework.ui.Model model)新增或编辑内容net.risesoft.pojo.Y9Result<Object>saveOrUpdate(ExtendedContent content)保存内容voidupdate(String processSerialNumber, String taskId)更新内容
-
-
-
Method Detail
-
countByProcessSerialNumberAndUserIdAndCategory
int countByProcessSerialNumberAndUserIdAndCategory(String processSerialNumber, String userid, String category)
Description: 根据人员统计- Parameters:
processSerialNumber-userid-category-- Returns:
-
countByProcSerialNumberAndCategory
int countByProcSerialNumberAndCategory(String processSerialNumber, String category)
Description: 根据processSerialNumber获取统计- Parameters:
processSerialNumber-category-- Returns:
-
countByTaskIdAndCategory
int countByTaskIdAndCategory(String taskId, String category)
Description: 根据taskId获取统计- Parameters:
taskId-category-- Returns:
-
findById
ExtendedContent findById(String id)
根据id获取内容- Parameters:
id-- Returns:
-
getCountPersonal
Integer getCountPersonal(String processSerialNumber, String category, String personId)
根据人员id,流程编号统计当前类型的内容数- Parameters:
processSerialNumber-category-personId-- Returns:
-
getCountPersonal
Integer getCountPersonal(String processSerialNumber, String taskId, String category, String personId)
根据人员id统计当前任务,当前类型的内容数- Parameters:
processSerialNumber-taskId-category-personId-- Returns:
-
getNewConentByProcessSerialNumber
ExtendedContent getNewConentByProcessSerialNumber(String processSerialNumber, String category)
获取最新填写的内容- Parameters:
processSerialNumber-category-- Returns:
-
getResultByUserIdAndCategory
ExtendedContent getResultByUserIdAndCategory(String processSerialNumber, String userid, String category)
根据人员Id和流程编号获取办理信息- Parameters:
userid-processSerialNumber-category-- Returns:
-
listContents
List<Map<String,Object>> listContents(String processSerialNumber, String taskId, String itembox, String category)
获取内容列表- Parameters:
processSerialNumber-itembox-taskId-category-- Returns:
-
newOrModifyContent
org.springframework.ui.Model newOrModifyContent(String processSerialNumber, String taskId, String category, String id, org.springframework.ui.Model model)
新增或编辑内容- Parameters:
processSerialNumber-taskId-category-id-model-- Returns:
-
saveOrUpdate
net.risesoft.pojo.Y9Result<Object> saveOrUpdate(ExtendedContent content)
保存内容- Parameters:
content-- Returns:
-
-