物料流程整合

This commit is contained in:
zc
2026-04-03 17:31:20 +08:00
parent 5f86b1c909
commit 4f34e267d7
7 changed files with 17 additions and 47 deletions

View File

@@ -80,23 +80,19 @@
<select id="selectMaterialInfoPage" resultType="top.wms.admin.material.model.resp.MaterialInfoResp">
SELECT
mi.*,
mt.type_name typeName,
mp.process_name processName
mt.type_name typeName
FROM
sys_material_info mi
left join sys_material_type mt on mi.material_type_id = mt.id
left join sys_material_process mp on mi.material_process_id = mp.id
${ew.customSqlSegment}
</select>
<select id="selectMaterialInfoExport" resultType="top.wms.admin.material.model.resp.MaterialInfoResp">
SELECT
mi.*,
mt.type_name typeName,
mp.process_name processName
mt.type_name typeName
FROM
sys_material_info mi
left join sys_material_type mt on mi.material_type_id = mt.id
left join sys_material_process mp on mi.material_process_id = mp.id
${ew.customSqlSegment}
</select>