package com.onemap.sanya.service; import com.onemap.sanya.domain.spatial.C41Gfjb; import com.onemap.sanya.domain.spatial.C4Lxj; import java.util.List; /** * c4_LxjService接口 * * @author ruoyi * @date 2024-08-29 */ public interface IC4LxjService { /** * 查询c4_Lxj * * @param smid c4_Lxj主键 * @return c4_Lxj */ public C4Lxj selectC4LxjBySmid(Integer smid); /** * 查询c4_Lxj列表 * * @param c4Lxj c4_Lxj * @return c4_Lxj集合 */ public List selectC4LxjList(C4Lxj c4Lxj); /** * 获取范围下的列表 * @param polygon * @return */ public List selectByPolygon(String polygon); /** * 新增c4_Lxj * * @param c4Lxj c4_Lxj * @return 结果 */ public int insertC4Lxj(C4Lxj c4Lxj); /** * 修改c4_Lxj * * @param c4Lxj c4_Lxj * @return 结果 */ public int updateC4Lxj(C4Lxj c4Lxj); /** * 批量删除c4_Lxj * * @param smids 需要删除的c4_Lxj主键集合 * @return 结果 */ public int deleteC4LxjBySmids(Integer[] smids); /** * 删除c4_Lxj信息 * * @param smid c4_Lxj主键 * @return 结果 */ public int deleteC4LxjBySmid(Integer smid); }