管道基础大数据平台系统开发-【后端】-Server
1
sws
2022-11-26 ab849f796bdc17236a95ea5fe5c166fb8f24a75c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.lf.server.mapper.bd;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.lf.server.entity.bd.SsurveyinformationEntity;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
 
/**
 * Ssurveyinformation
 * @author WWW
 */
@Mapper
@Repository
public interface SsurveyinformationMapper extends BaseMapper<SsurveyinformationEntity> {
}