15 lines
363 B
Java
15 lines
363 B
Java
|
|
package com.gunshi.project.xyt.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.xyt.model.OsmoticPressR;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 渗压监测记录表
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-07-08 15:44:07
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface OsmoticPressRMapper extends BaseMapper<OsmoticPressR> {
|
||
|
|
|
||
|
|
}
|