fuliqi
2024-03-26 2090500dab57f9c898b3d8f0d580046d311fd0eb
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.Report;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ycl.platform.domain.vo.ReportVO;
import com.ycl.platform.domain.form.ReportForm;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 报备 Mapper 接口
 *
 * @author xp
 * @since 2024-03-19
 */
@Mapper
public interface ReportMapper extends BaseMapper<Report> {
 
}