19 lines
821 B
XML
19 lines
821 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="com.sa.zentao.mapper.ZtStoryspecMapper">
|
|
<resultMap id="BaseResultMap" type="com.sa.zentao.entity.ZtStoryspec">
|
|
<result column="story" property="story" />
|
|
<result column="version" property="version" />
|
|
<result column="title" property="title" />
|
|
<result column="spec" property="spec" />
|
|
<result column="verify" property="verify" />
|
|
<result column="files" property="files" />
|
|
</resultMap>
|
|
<select id="getPrdById" resultType="com.sa.zentao.entity.ZtStoryspec">
|
|
|
|
SELECT * from zt_storyspec WHERE story = #{id} ORDER BY version desc limit 1
|
|
|
|
</select>
|
|
|
|
</mapper>
|