[Spring][쇼핑몰 프로젝트][27] 업로드 이미지 정보 등록 - 2

https://kimvampa.tistory.com/228
This commit is contained in:
SeoJin Kim
2021-06-08 14:19:18 +09:00
parent 2f91f85cdb
commit 32689e3f7b
10 changed files with 128 additions and 21 deletions

View File

@@ -2,6 +2,7 @@ package com.vam.mapper;
import java.util.List;
import com.vam.model.AttachImageVO;
import com.vam.model.BookVO;
import com.vam.model.CateVO;
import com.vam.model.Criteria;
@@ -29,4 +30,7 @@ public interface AdminMapper {
/* 상품 정보 삭제 */
public int goodsDelete(int bookId);
/* 이미지 등록 */
public void imageEnroll(AttachImageVO vo);
}