Blame view

MessageMapper.java 347 Bytes
涂亚平 committed
1 2
package com.subsidy.mapper;

涂亚平 committed
3
import com.subsidy.model.MessageDO;
涂亚平 committed
4 5 6 7 8
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

/**
 * <p>
涂亚平 committed
9
 * 通知消息表 Mapper 接口
涂亚平 committed
10 11 12
 * </p>
 *
 * @author Tuyp
涂亚平 committed
13
 * @since 2025-01-08
涂亚平 committed
14 15
 */
 @Repository
涂亚平 committed
16
public interface MessageMapper extends BaseMapper<MessageDO> {
涂亚平 committed
17 18

}