18 lines
950 B
XML
18 lines
950 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.yolo.keyborad.mapper.KeyboardUserThemesMapper">
|
|
<resultMap id="BaseResultMap" type="com.yolo.keyborad.model.entity.KeyboardUserThemes">
|
|
<!--@mbg.generated-->
|
|
<!--@Table keyboard_user_themes-->
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="theme_id" jdbcType="BIGINT" property="themeId" />
|
|
<result column="user_id" jdbcType="BIGINT" property="userId" />
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
|
<result column="view_deleted" jdbcType="BOOLEAN" property="viewDeleted" />
|
|
<result column="updated_at" jdbcType="BOOLEAN" property="updatedAt" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
id, theme_id, user_id, created_at, view_deleted, updated_at
|
|
</sql>
|
|
</mapper> |