Initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.ruoyi.jysystem.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.jysystem.domain.JySysTenantMessage;
|
||||
|
||||
/**
|
||||
* 租户消息Service
|
||||
*/
|
||||
public interface IJySysTenantMessageService
|
||||
{
|
||||
List<JySysTenantMessage> selectPortalMessageList(JySysTenantMessage message);
|
||||
|
||||
int countPortalUnread();
|
||||
|
||||
int markPortalRead(Long id);
|
||||
|
||||
int markPortalAllRead();
|
||||
|
||||
void notifyOrderStatusChange(Long orderId, String orderStatus, String remark, String expressCompany, String expressNo);
|
||||
}
|
||||
Reference in New Issue
Block a user