[Spring][쇼핑몰 프로젝트][46] 댓글 등록 - 1

https://kimvampa.tistory.com/288
This commit is contained in:
SeoJin Kim
2022-01-03 15:05:51 +09:00
parent 5266fd2dcd
commit 9f3f678682
17 changed files with 381 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
package com.vam.service;
import com.vam.model.ReplyDTO;
public interface ReplyService {
/* 댓글 등록 */
public int enrollReply(ReplyDTO dto);
}