add Select Modal and Modal views

This commit is contained in:
Kana
2024-01-12 17:47:56 +09:00
parent 3307564595
commit 8c31a4eae6
19 changed files with 1122 additions and 172 deletions

View File

@@ -14,4 +14,12 @@ public interface PriceMapper {
int count(Map<String, Object> m);//카운터
List<PriceDto> priceList2(Map<String, Object> m);//검색기능까지 포함
int createProcess(PriceDto dto);
List<PriceDto> priceList3(Map<String, Object> m);
int count2(Map<String, Object> m);//카운터
PriceDto selectById(String id);
int updateById(PriceDto dto);
int deactivateById(String id);
}