You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
<?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.gaotao.modules.base.dao.ChooselistDao">
|
|
<resultMap id="BaseResultMap" type="com.gaotao.modules.base.entity.Chooselist">
|
|
<id column="TagNo" jdbcType="FLOAT" property="tagno" />
|
|
<result column="Description" jdbcType="VARCHAR" property="description" />
|
|
<result column="SQLCode" jdbcType="VARCHAR" property="sqlcode" />
|
|
<result column="Caption1" jdbcType="VARCHAR" property="caption1" />
|
|
<result column="Caption2" jdbcType="VARCHAR" property="caption2" />
|
|
<result column="Caption3" jdbcType="VARCHAR" property="caption3" />
|
|
<result column="Caption4" jdbcType="VARCHAR" property="caption4" />
|
|
<result column="FieldName1" jdbcType="VARCHAR" property="fieldname1" />
|
|
<result column="FieldName2" jdbcType="VARCHAR" property="fieldname2" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
TagNo, Description, "SQLCode", Caption1, Caption2, Caption3, Caption4, FieldName1,
|
|
FieldName2
|
|
</sql>
|
|
<select id="getChooselistData" resultType="java.util.Map">
|
|
${sqlCode }
|
|
</select>
|
|
|
|
|
|
</mapper>
|