feat: 生产部署 + 会议全链路 (执行方分配/费用结算/签到脱敏/H5相机)
- 生产 nginx 三路径: ry-vue3 /hg/, ry-h5 /camera/, API /hg-api, .env 分环境 - 签约链接/摄像头 base-url 走 yml, 不再硬编码 /hg 与 localhost - 新增 biz_project_executor_assign (镜像 sponsor_assign) 执行方项目级分配 - 会议费用后台汇总 FeeCalcScheduler + 结算回写项目金额 + 状态流转调度 - 签到表拍照高斯模糊脱敏 extra_oss_url, 新增 PosterService/StageDeriver - 清理 biz_support_intent 旧表 (6 Java/XML 删除) - ry-h5 相机黑屏修复: 显式 video.play() + 动态 apiBase 上传 - 资源: simhei 字体 / logo.png / qrcode_1.png / favicon.ico Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
+12
-3
@@ -9,14 +9,16 @@
|
||||
<result property="subType" column="sub_type" />
|
||||
<result property="fileName" column="file_name" />
|
||||
<result property="ossUrl" column="oss_url" />
|
||||
<result property="extraOssUrl" column="extra_oss_url" />
|
||||
<result property="amount" column="amount" />
|
||||
<result property="creatorId" column="creator_id" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="isDeleted" column="is_deleted" />
|
||||
<result property="feeStatus" column="fee_status" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectFields">
|
||||
select id, meeting_id, material_type, sub_type, file_name, oss_url, amount, creator_id, create_time, is_deleted
|
||||
select id, meeting_id, material_type, sub_type, file_name, oss_url, extra_oss_url, amount, creator_id, create_time, is_deleted, fee_status
|
||||
from biz_meeting_material
|
||||
</sql>
|
||||
|
||||
@@ -39,6 +41,7 @@
|
||||
<if test="subType != null and subType != ''">sub_type,</if>
|
||||
<if test="fileName != null and fileName != ''">file_name,</if>
|
||||
<if test="ossUrl != null and ossUrl != ''">oss_url,</if>
|
||||
<if test="extraOssUrl != null and extraOssUrl != ''">extra_oss_url,</if>
|
||||
<if test="amount != null">amount,</if>
|
||||
<if test="creatorId != null">creator_id,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
@@ -49,6 +52,7 @@
|
||||
<if test="subType != null and subType != ''">#{subType},</if>
|
||||
<if test="fileName != null and fileName != ''">#{fileName},</if>
|
||||
<if test="ossUrl != null and ossUrl != ''">#{ossUrl},</if>
|
||||
<if test="extraOssUrl != null and extraOssUrl != ''">#{extraOssUrl},</if>
|
||||
<if test="amount != null">#{amount},</if>
|
||||
<if test="creatorId != null">#{creatorId},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
@@ -56,11 +60,11 @@
|
||||
</insert>
|
||||
|
||||
<insert id="insertBatch" parameterType="java.util.List">
|
||||
insert into biz_meeting_material (meeting_id, material_type, sub_type, file_name, oss_url, amount, creator_id, create_time)
|
||||
insert into biz_meeting_material (meeting_id, material_type, sub_type, file_name, oss_url, extra_oss_url, amount, creator_id, create_time, fee_status)
|
||||
values
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
(#{item.meetingId}, #{item.materialType}, #{item.subType}, #{item.fileName}, #{item.ossUrl},
|
||||
#{item.amount}, #{item.creatorId}, #{item.createTime})
|
||||
#{item.extraOssUrl}, #{item.amount}, #{item.creatorId}, #{item.createTime}, #{item.feeStatus})
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
@@ -71,6 +75,7 @@
|
||||
<if test="subType != null and subType != ''">sub_type = #{subType},</if>
|
||||
<if test="fileName != null and fileName != ''">file_name = #{fileName},</if>
|
||||
<if test="ossUrl != null and ossUrl != ''">oss_url = #{ossUrl},</if>
|
||||
<if test="extraOssUrl != null and extraOssUrl != ''">extra_oss_url = #{extraOssUrl},</if>
|
||||
<if test="amount != null">amount = #{amount},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
@@ -80,6 +85,10 @@
|
||||
update biz_meeting_material set amount = #{amount} where id = #{id}
|
||||
</update>
|
||||
|
||||
<update id="updateFeeStatus">
|
||||
update biz_meeting_material set fee_status = #{feeStatus} where id = #{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteByPrimaryKey" parameterType="Long">
|
||||
delete from biz_meeting_material where id = #{id}
|
||||
</delete>
|
||||
|
||||
Reference in New Issue
Block a user