14 lines
588 B
XML
14 lines
588 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.yupi.springbootinit.mapper.AiCommentMapper">
|
|
<resultMap id="BaseResultMap" type="com.yupi.springbootinit.model.entity.AiComment">
|
|
<!--@mbg.generated-->
|
|
<!--@Table ai_comment-->
|
|
<id column="id" jdbcType="INTEGER" property="id" />
|
|
<result column="content" jdbcType="VARCHAR" property="content" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
id, content
|
|
</sql>
|
|
</mapper> |