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

20 lines
828 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.PagecachedataMapper">
<resultMap id="BaseResultMap" type="com.example.demo.domain.Pagecachedata">
<id property="id" column="ID" jdbcType="BIGINT"/>
<result property="pagename" column="PAGENAME" jdbcType="VARCHAR"/>
<result property="cachename" column="CACHENAME" jdbcType="VARCHAR"/>
<result property="cachedata" column="CACHEDATA" jdbcType="VARCHAR"/>
<result property="updatedate" column="UPDATEDATE" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
ID,PAGENAME,CACHENAME,
CACHEDATA,UPDATEDATE
</sql>
</mapper>