18 lines
985 B
XML
18 lines
985 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.KeyboardUserQuotaTotalMapper">
|
|
<resultMap id="BaseResultMap" type="com.yolo.keyborad.model.entity.KeyboardUserQuotaTotal">
|
|
<!--@mbg.generated-->
|
|
<!--@Table keyboard_user_quota_total-->
|
|
<id column="user_id" jdbcType="BIGINT" property="userId" />
|
|
<result column="total_quota" jdbcType="INTEGER" property="totalQuota" />
|
|
<result column="used_quota" jdbcType="INTEGER" property="usedQuota" />
|
|
<result column="version" jdbcType="INTEGER" property="version" />
|
|
<result column="created_at" jdbcType="TIMESTAMP" property="createdAt" />
|
|
<result column="updated_at" jdbcType="TIMESTAMP" property="updatedAt" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
<!--@mbg.generated-->
|
|
user_id, total_quota, used_quota, version, created_at, updated_at
|
|
</sql>
|
|
</mapper> |