Prompt Title: Product registration.

Created 1 year ago
Votes 0
Views 303 times
0

Prompt Detail:

package com.kh.myproduct.svc; import com.kh.myproduct.dao.Product; import java.util.List; import java.util.Optional; public interface ProductSVC { //등록 Long save(Product product); //조회; Optional<Product> findById(Long productId); //수정 int update(Long productId,Product product); //삭제 int delete(Long productId); //목록 List<Product> findAll(); /** * 상품존재유무 * @param productId 상품아이디 * @return */ boolean isExist(Long productId); } Answer in English. Please write in English language.
avatar
aergaeg
Shared 1 prompt
Created 1 year ago

Leave a Comment

Related Tag Prompts

0
0
Перефраз
1 year ago 2023-03-30 10:42:04 Gagik