100 lines
3.4 KiB
Java
100 lines
3.4 KiB
Java
package sgis.app.mapper;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
|
|
import egovframework.rte.psl.dataaccess.mapper.Mapper;
|
|
|
|
/**
|
|
* @FileName : AppServiceMapper.java
|
|
* @Date : 2022. 9. 22.
|
|
* @Creator : ICTWAY KIM YOON SU
|
|
* @Discription :
|
|
*/
|
|
@Mapper("AppInstrumentMapper")
|
|
public interface AppInstrumentMapper {
|
|
|
|
List<?> selectSurSetInfo(HashMap<String,Object> params) throws Exception;
|
|
|
|
void insertSurSetInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSurSetInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSurPinInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertSurPinInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSurPinInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectVerIncInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteVerIncInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertVerIncInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSetExtInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSetExtInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertSetExtInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatPreInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteWatPreInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertWatPreInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatLevInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteWatLevInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertWatLevInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSurSetSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertSurSetSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSurSetSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSurPinSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertSurPinSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSurPinSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectVerIncSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertVerIncSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteVerIncSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSetExtSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertSetExtSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteSetExtSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatPreSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertWatPreSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteWatPreSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatLevSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void insertWatLevSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
void deleteWatLevSubInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectVerIncMapInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSetExtMapInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatPreMapInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectWatLevMapInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
List<?> selectSurSetSubMapInfo(HashMap<String, Object> params) throws Exception;
|
|
|
|
}
|