response/target/classes/mapper/DwhsDbMapper.xml
2025-06-27 10:04:22 +08:00

19 lines
692 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.example.demo.mapper.DwhsDbMapper">
<resultMap id="BaseResultMap" type="com.example.demo.domain.DwhsDb">
<result property="id" column="_ID" jdbcType="VARCHAR"/>
<result property="hsgx" column="HSGX" jdbcType="VARCHAR"/>
<result property="mbjldw" column="MBJLDW" jdbcType="VARCHAR"/>
<result property="yjldw" column="YJLDW" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
_ID,HSGX,MBJLDW,
YJLDW
</sql>
</mapper>