15 lines
354 B
Java
15 lines
354 B
Java
|
|
package com.gunshi.project.hsz.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.gunshi.project.hsz.model.AttGateValve;
|
||
|
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 描述: 闸阀信息表
|
||
|
|
* author: xusan
|
||
|
|
* date: 2024-07-08 15:44:07
|
||
|
|
*/
|
||
|
|
@Mapper
|
||
|
|
public interface AttGateValveMapper extends BaseMapper<AttGateValve> {
|
||
|
|
|
||
|
|
}
|