SPRING/chapter04_MVC
Sample2Mapper.java
GAWON
2023. 7. 18. 09:21
package org.joonzis.mapper;
import org.apache.ibatis.annotations.Insert;
public interface Sample2Mapper {
@Insert("insert into tbl_sample2 values(#{data})")
public int insertCol2(String data);
}