15 lines
357 B
Java
15 lines
357 B
Java
package com.gunshi.project.xyt.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.gunshi.project.xyt.model.AttSpillwayBase;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 描述: 溢洪道
|
|
* author: xusan
|
|
* date: 2024-07-08 15:44:07
|
|
*/
|
|
@Mapper
|
|
public interface AttSpillwayBaseMapper extends BaseMapper<AttSpillwayBase> {
|
|
|
|
} |