添加Swagger/OpenAPI依赖并更新用户账户管理相关的API文档注释,优化用户和管理员账户控制器的接口描述,移除不必要的字段和参数,调整数据库映射以简化用户账户管理逻辑。

This commit is contained in:
zyh
2025-08-24 19:21:54 +08:00
parent 1b3ce1040a
commit 4664f1c487
64 changed files with 1688 additions and 171 deletions

View File

@@ -0,0 +1,52 @@
<?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.gameplatform.server.mapper.agent.AgentPointsTxMapper">
<resultMap id="AgentPointsTxMap" type="com.gameplatform.server.model.entity.agent.AgentPointsTx">
<id property="id" column="id" />
<result property="accountId" column="account_id" />
<result property="type" column="type" />
<result property="beforePoints" column="before_points" />
<result property="deltaPoints" column="delta_points" />
<result property="afterPoints" column="after_points" />
<result property="reason" column="reason" />
<result property="refId" column="ref_id" />
<result property="operatorId" column="operator_id" />
<result property="createdAt" column="created_at" />
</resultMap>
<select id="findById" parameterType="long" resultMap="AgentPointsTxMap">
SELECT id, account_id, type, before_points, delta_points, after_points, reason, ref_id, operator_id, created_at
FROM agent_points_tx
WHERE id = #{id}
LIMIT 1
</select>
<insert id="insert" parameterType="com.gameplatform.server.model.entity.agent.AgentPointsTx" useGeneratedKeys="true" keyProperty="id">
INSERT INTO agent_points_tx (account_id, type, before_points, delta_points, after_points, reason, ref_id, operator_id)
VALUES (#{accountId}, #{type}, #{beforePoints}, #{deltaPoints}, #{afterPoints}, #{reason}, #{refId}, #{operatorId})
</insert>
<select id="findByAccountId" resultMap="AgentPointsTxMap">
SELECT id, account_id, type, before_points, delta_points, after_points, reason, ref_id, operator_id, created_at
FROM agent_points_tx
WHERE account_id = #{accountId}
ORDER BY created_at DESC
LIMIT #{size} OFFSET #{offset}
</select>
<select id="countByAccountId" resultType="long">
SELECT COUNT(1) FROM agent_points_tx WHERE account_id = #{accountId}
</select>
<select id="findByAccountIdAndType" resultMap="AgentPointsTxMap">
SELECT id, account_id, type, before_points, delta_points, after_points, reason, ref_id, operator_id, created_at
FROM agent_points_tx
WHERE account_id = #{accountId} AND type = #{type}
ORDER BY created_at DESC
LIMIT #{size} OFFSET #{offset}
</select>
<select id="countByAccountIdAndType" resultType="long">
SELECT COUNT(1) FROM agent_points_tx WHERE account_id = #{accountId} AND type = #{type}
</select>
</mapper>