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:
+17
-6
@@ -7,7 +7,10 @@
|
||||
<result property="meetingId" column="meeting_id" />
|
||||
<result property="auditor" column="auditor" />
|
||||
<result property="opinion" column="opinion" />
|
||||
<result property="currentStage" column="current_stage" />
|
||||
<result property="executorStage" column="executor_stage" />
|
||||
<result property="sponsorStage" column="sponsor_stage" />
|
||||
<result property="managerStage" column="manager_stage" />
|
||||
<result property="adminStage" column="admin_stage" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="auditTime" column="audit_time" />
|
||||
<result property="auditType" column="audit_type" />
|
||||
@@ -16,7 +19,7 @@
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectFields">
|
||||
select id, meeting_id, auditor, opinion, current_stage, create_time, audit_time, audit_type, audit_result, is_deleted
|
||||
select id, meeting_id, auditor, opinion, executor_stage, sponsor_stage, manager_stage, admin_stage, create_time, audit_time, audit_type, audit_result, is_deleted
|
||||
from biz_meeting_audit_log
|
||||
</sql>
|
||||
|
||||
@@ -30,7 +33,6 @@
|
||||
<where>
|
||||
is_deleted = 0
|
||||
<if test="meetingId != null">and meeting_id = #{meetingId}</if>
|
||||
<if test="currentStage != null and currentStage != ''">and current_stage = #{currentStage}</if>
|
||||
<if test="auditor != null and auditor != ''">and auditor = #{auditor}</if>
|
||||
</where>
|
||||
order by id desc
|
||||
@@ -42,7 +44,10 @@
|
||||
<if test="meetingId != null">meeting_id,</if>
|
||||
<if test="auditor != null and auditor != ''">auditor,</if>
|
||||
<if test="opinion != null and opinion != ''">opinion,</if>
|
||||
<if test="currentStage != null and currentStage != ''">current_stage,</if>
|
||||
<if test="executorStage != null and executorStage != ''">executor_stage,</if>
|
||||
<if test="sponsorStage != null and sponsorStage != ''">sponsor_stage,</if>
|
||||
<if test="managerStage != null and managerStage != ''">manager_stage,</if>
|
||||
<if test="adminStage != null and adminStage != ''">admin_stage,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="auditTime != null">audit_time,</if>
|
||||
<if test="auditType != null and auditType != ''">audit_type,</if>
|
||||
@@ -52,7 +57,10 @@
|
||||
<if test="meetingId != null">#{meetingId},</if>
|
||||
<if test="auditor != null and auditor != ''">#{auditor},</if>
|
||||
<if test="opinion != null and opinion != ''">#{opinion},</if>
|
||||
<if test="currentStage != null and currentStage != ''">#{currentStage},</if>
|
||||
<if test="executorStage != null and executorStage != ''">#{executorStage},</if>
|
||||
<if test="sponsorStage != null and sponsorStage != ''">#{sponsorStage},</if>
|
||||
<if test="managerStage != null and managerStage != ''">#{managerStage},</if>
|
||||
<if test="adminStage != null and adminStage != ''">#{adminStage},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="auditTime != null">#{auditTime},</if>
|
||||
<if test="auditType != null and auditType != ''">#{auditType},</if>
|
||||
@@ -65,7 +73,10 @@
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="auditor != null and auditor != ''">auditor = #{auditor},</if>
|
||||
<if test="opinion != null and opinion != ''">opinion = #{opinion},</if>
|
||||
<if test="currentStage != null and currentStage != ''">current_stage = #{currentStage},</if>
|
||||
<if test="executorStage != null and executorStage != ''">executor_stage = #{executorStage},</if>
|
||||
<if test="sponsorStage != null and sponsorStage != ''">sponsor_stage = #{sponsorStage},</if>
|
||||
<if test="managerStage != null and managerStage != ''">manager_stage = #{managerStage},</if>
|
||||
<if test="adminStage != null and adminStage != ''">admin_stage = #{adminStage},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="auditTime != null">audit_time = #{auditTime},</if>
|
||||
<if test="auditType != null and auditType != ''">audit_type = #{auditType},</if>
|
||||
|
||||
Reference in New Issue
Block a user