21 lines
494 B
Java
21 lines
494 B
Java
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);
|
|
}
|