22 lines
1.3 KiB
XML
22 lines
1.3 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.yolo.keyborad.mapper.KeyboardAiCommentReportMapper">
|
||
|
|
<resultMap id="BaseResultMap" type="com.yolo.keyborad.model.entity.KeyboardAiCommentReport">
|
||
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
||
|
|
<result column="comment_id" jdbcType="BIGINT" property="commentId" />
|
||
|
|
<result column="user_id" jdbcType="BIGINT" property="userId" />
|
||
|
|
<result column="report_type" jdbcType="VARCHAR" property="reportType" />
|
||
|
|
<result column="report_desc" jdbcType="VARCHAR" property="reportDesc" />
|
||
|
|
<result column="chat_context" jdbcType="VARCHAR" property="chatContext" />
|
||
|
|
<result column="evidence_image_url" jdbcType="VARCHAR" property="evidenceImageUrl" />
|
||
|
|
<result column="status" jdbcType="SMALLINT" property="status" />
|
||
|
|
<result column="admin_remark" jdbcType="VARCHAR" property="adminRemark" />
|
||
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
||
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" />
|
||
|
|
</resultMap>
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
id, comment_id, user_id, report_type, report_desc, chat_context, evidence_image_url,
|
||
|
|
"status", admin_remark, created_at, updated_at
|
||
|
|
</sql>
|
||
|
|
</mapper>
|