管道基础大数据平台系统开发-【后端】-Server
1
sws
2022-11-23 70b737fb611fbcb4f76c97a8877ca1691da92193
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.lf.server.mapper.bs;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.lf.server.entity.bs.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> {
}