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

27 lines
1.1 KiB
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.SpdlMapper">
<resultMap id="BaseResultMap" type="com.example.demo.domain.Spdl">
<result property="zid" column="ZId" jdbcType="OTHER"/>
<result property="did" column="DId" jdbcType="OTHER"/>
<result property="yid" column="YId" jdbcType="OTHER"/>
<result property="pid" column="PId" jdbcType="OTHER"/>
<result property="xid" column="XId" jdbcType="OTHER"/>
<result property="name" column="name" jdbcType="OTHER"/>
<result property="spdl" column="SPDL" jdbcType="OTHER"/>
<result property="type" column="type" jdbcType="INTEGER"/>
<result property="typename" column="typeName" jdbcType="OTHER"/>
<result property="fname" column="FName" jdbcType="OTHER"/>
</resultMap>
<sql id="Base_Column_List">
ZId,DId,YId,
PId,XId,name,
SPDL,type,typeName,
FName
</sql>
</mapper>