xiangpei
2024-04-23 9ab7c949663a59e3f7424a8caa08d650d168fd11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.platform.mapper;
 
import com.ycl.platform.domain.entity.Notify;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.vo.NotifyVO;
import com.ycl.platform.domain.form.NotifyForm;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 通知 Mapper 接口
 *
 * @author xp
 * @since 2024-04-07
 */
@Mapper
public interface NotifyMapper extends BaseMapper<Notify> {
 
}