17 lines
448 B
Java
17 lines
448 B
Java
package com.erp.mapper;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
@Mapper
|
|
public interface ScreenFileMapper {
|
|
|
|
/** 화면의 모든 컴포넌트 파일 목록 조회 */
|
|
List<Map<String, Object>> selectScreenComponentFiles(Map<String, Object> params);
|
|
|
|
/** 특정 컴포넌트의 파일 목록 조회 */
|
|
List<Map<String, Object>> selectComponentFiles(Map<String, Object> params);
|
|
}
|