Skip to content
Test1Mapper.java 361 B
Newer Older
happylin's avatar
happylin committed
package mapper;

import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;

import entity.Test1Entity;

public interface Test1Mapper {

    @Select("SELECT ID, NAME, CREATE_DATE, UPDATE_DATE FROM TEST1 WHERE ID = #{id} AND NAME = #{name}")
    Test1Entity selectTest1Entity(@Param("id") String id, @Param("name") String name);

}