创客额度相关,分享改bug,

This commit is contained in:
liuyingfang
2023-08-21 18:22:12 +08:00
parent cd190ba1f5
commit b108849572
27 changed files with 571 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
<?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="cn.pluss.platform.mapper.UserMakerQuotaMapper">
<select id="sumQuota" resultType="java.math.BigDecimal">
SELECT SUM(amount)
FROM tb_pluss_user_maker_quota
WHERE userId = #{userId}
</select>
</mapper>

View File

@@ -37,4 +37,15 @@
from tb_pluss_user_promotion
where user_id = #{userId}
</select>
<select id="selectByUserIdMC" resultType="cn.pluss.platform.entity.UserPromotion">
select *
from tb_pluss_user_promotion
<where>
user_id = #{userId}
AND type_code = 'MC'
AND is_extend = '1'
</where>
</select>
</mapper>