package com.newfiber.modules.inspection.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.newfiber.modules.inspection.entity.EquInfoEntity; import org.apache.ibatis.annotations.Mapper; /** * 设备基础信息 * * @author chenshun * @email sunlightcs@gmail.com * @date 2020-09-06 13:49:11 */ @Mapper public interface EquInfoDao extends BaseMapper<EquInfoEntity> { EquInfoEntity getByEquNo(String equNo); }