feat: 达标奖励查询方式修改

This commit is contained in:
张松
2024-12-30 14:19:53 +08:00
parent bd6499727e
commit b6c8a07486
5 changed files with 189 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?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.sqx.modules.app.mapper.InviteAchievementMapper">
<resultMap id="BaseResultMap" type="com.sqx.modules.app.entity.InviteAchievement">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="userId" column="user_id" jdbcType="BIGINT"/>
<result property="byUserId" column="by_user_id" jdbcType="BIGINT"/>
<result property="amount" column="amount" jdbcType="DECIMAL"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
</resultMap>
<sql id="Base_Column_List">
id,user_id,by_user_id,
amount,create_time
</sql>
</mapper>