19 lines
748 B
XML
19 lines
748 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="mapper.TestCasesMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.guwan.backend.pojo.entity.TestCases">
|
|
<id property="id" column="id" jdbcType="INTEGER"/>
|
|
<result property="challengeId" column="challenge_id" jdbcType="INTEGER"/>
|
|
<result property="expectedOutput" column="expected_output" jdbcType="VARCHAR"/>
|
|
<result property="explanation" column="explanation" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,challenge_id,expected_output,
|
|
explanation
|
|
</sql>
|
|
</mapper>
|