Package net.risesoft.api.extend
Class ItemMsgRemindApiImpl
- java.lang.Object
-
- net.risesoft.api.extend.ItemMsgRemindApiImpl
-
- All Implemented Interfaces:
ItemMsgRemindApi
@RestController @RequestMapping(value="/services/rest/itemMsgRemind", produces="application/json") @Primary public class ItemMsgRemindApiImpl extends Object implements ItemMsgRemindApi消息提醒接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description ItemMsgRemindApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>deleteMsgRemindInfo(String tenantId, String processInstanceId)根据processInstanceId删除消息提醒信息net.risesoft.pojo.Y9Result<String>getRemindConfig(String tenantId, String userId, String type)根据userId,type获取消息提醒配置net.risesoft.pojo.Y9Result<Boolean>saveMsgRemindInfo(String tenantId, ItemMsgRemindModel info)保存消息提醒信息
-
-
-
Method Detail
-
deleteMsgRemindInfo
public net.risesoft.pojo.Y9Result<Object> deleteMsgRemindInfo(@RequestParam String tenantId, @RequestParam String processInstanceId)
根据processInstanceId删除消息提醒信息- Specified by:
deleteMsgRemindInfoin interfaceItemMsgRemindApi- Parameters:
tenantId- 租户idprocessInstanceId- 流程实例id- Returns:
Y9Result<Object>通用请求返回对象- Since:
- 9.6.6
-
getRemindConfig
public net.risesoft.pojo.Y9Result<String> getRemindConfig(@RequestParam String tenantId, @RequestParam String userId, String type)
根据userId,type获取消息提醒配置- Specified by:
getRemindConfigin interfaceItemMsgRemindApi- Parameters:
tenantId- 租户iduserId- 用户idtype- 类型- Returns:
Y9Result<String>通用请求返回对象- Since:
- 9.6.6
-
saveMsgRemindInfo
public net.risesoft.pojo.Y9Result<Boolean> saveMsgRemindInfo(@RequestParam String tenantId, @RequestBody ItemMsgRemindModel info)
保存消息提醒信息- Specified by:
saveMsgRemindInfoin interfaceItemMsgRemindApi- Parameters:
tenantId- 租户idinfo- 消息提醒信息- Returns:
Y9Result<Boolean>通用请求返回对象- Since:
- 9.6.6
-
-