luofl
2025-02-23 9ff71e0d63c963f2c2c48facdf2336c558ba7100
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.panzhihua.sangeshenbian.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.sangeshenbian.model.entity.MessageNotification;
import com.panzhihua.sangeshenbian.warpper.MessageNotificationList;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/23 3:04
 */
public interface IMessageNotificationService extends IService<MessageNotification> {
    
    
    IPage<MessageNotification> list(MessageNotificationList query);
}