package com.terra.proxy.mapper;
|
|
import com.terra.proxy.bean.E;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.HashMap;
|
import java.util.List;
|
|
@Mapper
|
@Repository
|
public interface ApproveDao {
|
List<E> selectAll();
|
|
List<E> selectEXTENDFILESPOINT();
|
|
void updateEXTENDFILESPOINTS(@Param("geom") String geom, @Param("id") String id);
|
|
void updateEXTENDFILESPOINTS(HashMap<String, Object> param);
|
|
void updateSeaArea(HashMap<String, Object> param);
|
}
|