fix:设备查询、使用记录增加字段

This commit is contained in:
FCL
2026-03-04 15:39:46 +08:00
parent 11d1deff3b
commit 787a6c12a0
7 changed files with 45 additions and 1 deletions

View File

@@ -59,13 +59,15 @@
<result property="manufacturer" column="MFR"/>
<result property="specification" column="SPEC"/>
<result property="modelNo" column="MDL_NO"/>
<result property="customConfig" column="CST_CFG"/>
</resultMap>
<select id="selectPage" resultMap="deviceMap">
SELECT d.*,
p.MFR,
p.SPEC,
p.MDL_NO
p.MDL_NO,
p.CST_CFG
from
T_DEV_INF d
LEFT JOIN T_DEV_PDT p ON d.PDT_ID = p.ID