package org.example.service; import org.example.utils.CommonResult; import org.locationtech.jts.geom.Coordinate; import org.springframework.stereotype.Service; public interface RingGridService { CommonResult calcFillCut(Coordinate[] coordinates, double range) throws Exception; }