服务标签列表返回字段增加内容

This commit is contained in:
1378012178@qq.com 2025-11-07 09:49:16 +08:00
parent b799d486ed
commit 1747b4cf08
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,7 @@
<result property="sysOrgCode" column="directive_sys_org_code"/>
<result property="mp3File" column="mp3_file"/>
<result property="mp4File" column="mp4_file"/>
<result property="instructionName" column="csi_instruction_name"/>
<result property="categoryName" column="csc_category_name"/>
<result property="typeName" column="cst_type_name"/>
<result property="previewFile" column="preview_file"/>
@ -128,6 +129,7 @@
cdet.update_by AS emotag_update_by,
cdet.update_time AS emotag_update_time,
cdet.sys_org_code AS emotag_sys_org_code,
csi.instruction_name AS csi_instruction_name,
csc.category_name AS csc_category_name,
cst.type_name AS cst_type_name
FROM
@ -145,6 +147,7 @@
LEFT JOIN nu_config_body_tag cdbt ON dbt.tag_id = cdbt.id
LEFT JOIN nu_directive_emotion_tag det ON csd.id = det.directive_id
LEFT JOIN nu_config_emotion_tag cdet ON det.tag_id = cdet.id
LEFT JOIN nu_config_service_instruction_tag csi ON csd.instruction_tag_id = csi.id
LEFT JOIN nu_config_service_category csc ON csd.category_id = csc.id
LEFT JOIN nu_config_service_type cst ON csd.type_id = cst.id
order by dp.create_time desc