You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.1 KiB
Java
101 lines
2.1 KiB
Java
package cfs.common.dao;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import cfs.common.vo.CommonStreamVO;
|
|
import cfs.common.vo.ExcelUpVO;
|
|
import cfs.common.vo.FixedMessageVO;
|
|
import cfs.common.vo.RfidInfoVO;
|
|
import cfs.common.vo.WorkerInfoVO;
|
|
|
|
@Repository("cfsCommonDao")
|
|
public interface CfsCommonDao {
|
|
|
|
/**
|
|
* 공통팝업 > 징수원 선택 팝업의 징수원 목록을 조회한다.
|
|
* @author exchange84
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
* 수정내역
|
|
*/
|
|
public List<WorkerInfoVO> findWorkerInfoList(WorkerInfoVO param);
|
|
|
|
/**
|
|
* 공통 > 공통메시지를 조회한다.
|
|
* @author exchange84
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
* 수정내역
|
|
*/
|
|
public List<FixedMessageVO> findFixedMessageList(FixedMessageVO param);
|
|
|
|
/**
|
|
* 공통팝업 > rfid 승인/해제 정보 팝업의 목록을 조회한다.
|
|
* @author hanjoohwa
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
*/
|
|
public List<RfidInfoVO> findRfidInfo(RfidInfoVO param);
|
|
|
|
/**
|
|
* 스트리밍할 파일의 정보를 조회한다.
|
|
* @author exchange84
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
* 수정내역
|
|
*/
|
|
public CommonStreamVO findViewFilePath(CommonStreamVO param);
|
|
|
|
/**
|
|
* 차적조회 CI값을 가져온다
|
|
* @author cfs02
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
* 수정내역
|
|
*/
|
|
public CommonStreamVO findcarnumSearCi(Map<String, String> param);
|
|
|
|
|
|
/**
|
|
* 공통팝업 > 우편번호 조회 팝업의 시/군/구을 조회한다.
|
|
* @author hanjoohwa
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
*/
|
|
public List<RfidInfoVO> findAddressInfoListSigungu(RfidInfoVO param);
|
|
|
|
|
|
/**
|
|
* 공통팝업 > 우편번호 조회 팝업의 주소 목록을 조회한다.
|
|
* @author hanjoohwa
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
*/
|
|
public List<RfidInfoVO> findAddressInfoList(RfidInfoVO param);
|
|
|
|
/**
|
|
* 공통팝업 > 암호화로 인한 코드추가
|
|
* @author
|
|
* @task
|
|
* @param param
|
|
* @return
|
|
*/
|
|
public Map<String, Object> findCommonSecure(CommonStreamVO param);
|
|
|
|
|
|
|
|
public int insertExcelUpLog(ExcelUpVO logVO);
|
|
|
|
public List<Map<String, String>> selectExcelUpLog(Map<String, String> param);
|
|
}
|