| | |
| | | package com.ycl.platform.mapper; |
| | | |
| | | import com.ycl.platform.base.BaseSelect; |
| | | import com.ycl.platform.domain.entity.YwPoint; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.platform.domain.vo.YwPointVO; |
| | | import com.ycl.platform.domain.form.YwPointForm; |
| | | import java.util.List; |
| | | |
| | | import com.ycl.system.Result; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 运维点位 Mapper 接口 |
| | |
| | | @Mapper |
| | | public interface YwPointMapper extends BaseMapper<YwPoint> { |
| | | |
| | | /** |
| | | * 下拉数据 |
| | | * @param keyword |
| | | * @param unitId |
| | | * @return |
| | | */ |
| | | List<BaseSelect> selectData(@Param("keyword") String keyword, @Param("unitId") Integer unitId); |
| | | } |