SPRING/chapter04_MVC

Sample1Mapper.java

GAWON 2023. 7. 18. 09:20
package org.joonzis.mapper;

import org.apache.ibatis.annotations.Insert;

public interface Sample1Mapper {
	@Insert("insert into tbl_sample1 values(#{data})")
	public int insertCol1(String data);
}