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

21 lines
811 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.XlzMapper">
<resultMap id="BaseResultMap" type="com.example.demo.domain.Xlz">
<id property="id" column="ID" jdbcType="INTEGER"/>
<result property="spxl" column="SPXL" jdbcType="VARCHAR"/>
<result property="jcxm" column="JCXM" jdbcType="VARCHAR"/>
<result property="min" column="MIN" jdbcType="VARCHAR"/>
<result property="max" column="MAX" jdbcType="VARCHAR"/>
<result property="dw" column="DW" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
ID,SPXL,JCXM,
MIN,MAX,DW
</sql>
</mapper>