This commit is contained in:
zc
2026-03-17 10:48:29 +08:00
parent 8d588502aa
commit 61a18e781d
34 changed files with 758 additions and 24 deletions

View File

@@ -49,4 +49,16 @@
</foreach>
</update>
<select id="selectMaterialInfoPage" resultType="top.wms.admin.material.model.resp.MaterialInfoResp">
SELECT
mi.*,
mt.type_name typeName,
mp.process_name processName
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>
</mapper>