20 lines
763 B
XML
20 lines
763 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.rzyc.mapper.AppHelpVersionMapper">
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
<resultMap id="BaseResultMap" type="com.rzyc.model.AppHelpVersion">
|
|
<id column="id" property="id" />
|
|
<result column="help_type" property="helpType" />
|
|
<result column="help_content" property="helpContent" />
|
|
<result column="create_time" property="createTime" />
|
|
<result column="app_type" property="appType" />
|
|
</resultMap>
|
|
|
|
<!-- 通用查询结果列 -->
|
|
<sql id="Base_Column_List">
|
|
id, help_type, help_content, create_time, app_type
|
|
</sql>
|
|
|
|
</mapper>
|