package com.gk.hotwork.Mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gk.hotwork.Domain.FourColorPointCoord; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface FourColorPointCoordMapper extends BaseMapper { List findCoordListByPointId(String pointId); }