服务指令-生成工单后,修改指令池的工单状态

This commit is contained in:
曹磊 2026-01-12 11:31:30 +08:00
parent 9a3dd19173
commit 63a75e77e9
1 changed files with 20 additions and 2 deletions

View File

@ -225,7 +225,7 @@
</select>
<update id="updatePoolIzOrder">
update nu_biz_nu_care_directive_data_pool
update nu_biz_nu_directive_data_pool
set iz_orders = 'Y'
where id = #{poolId}
</update>
@ -425,7 +425,25 @@
</select>
<select id="getDirectiveById" resultType="com.nu.modules.biz.order.entity.DirectiveOrder">
select m.*
select
id,
nu_id as nuId,
nu_name as nuName,
elder_id as elderId,
elder_name as elderName,
directive_id as directiveId,
directive_name as directiveName,
preview_file as previewFile,
net_preview_file as netPreviewFile,
preview_file_small as previewFileSmall,
net_preview_file_small as netPreviewFileSmall,
mp3_file as mp3File,
net_mp3_file as netMp3File,
mp4_file as mp4File,
net_mp4_file as netMp4File,
service_duration as serviceDuration,
service_content as serviceContent,
iz_package
from ${tableName} m
where m.id = #{id}
</select>