2025-12-09 15:22:17 +08:00
|
|
|
<?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.KeyboardThemeStylesMapper">
|
|
|
|
|
<resultMap id="BaseResultMap" type="com.yolo.keyborad.model.entity.KeyboardThemeStyles">
|
|
|
|
|
<!--@mbg.generated-->
|
|
|
|
|
<!--@Table keyboard_theme_styles-->
|
|
|
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
|
|
|
<result column="style_name" jdbcType="VARCHAR" property="styleName" />
|
|
|
|
|
<result column="deleted" jdbcType="BOOLEAN" property="deleted" />
|
|
|
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
|
|
|
|
<result column="updated_at" jdbcType="DATE" property="updatedAt" />
|
2026-03-09 11:44:34 +08:00
|
|
|
<result column="local" jdbcType="VARCHAR" property="local" />
|
2025-12-09 15:22:17 +08:00
|
|
|
</resultMap>
|
|
|
|
|
<sql id="Base_Column_List">
|
|
|
|
|
<!--@mbg.generated-->
|
2026-03-09 11:44:34 +08:00
|
|
|
id, style_name, deleted, created_at, updated_at, local
|
2025-12-09 15:22:17 +08:00
|
|
|
</sql>
|
2026-03-09 11:44:34 +08:00
|
|
|
</mapper>
|