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.GateValveReal;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 闸阀开关表
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-07-08 15:44:07
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface GateValveRealMapper extends BaseMapper<GateValveReal> {
|
||
|
|
|
||
|
|
}
|