加个普通水印、推送订单纠正、水印预览和下载

This commit is contained in:
2025-03-18 18:23:18 +08:00
parent 46f6532164
commit 26dc53ca6a
20 changed files with 408 additions and 188 deletions

View File

@ -263,4 +263,14 @@
) a
order by createTime desc
</select>
<select id="getUserRecentEnterType" resultType="java.lang.Long">
select morph_id
from statistics
where type = 10 and member_id = #{memberId}
<if test="endTime!= null">
and create_time &lt;= #{endTime}
</if>
order by create_time desc
limit 1
</select>
</mapper>