物联设备列表排序
This commit is contained in:
parent
9e4948b5c7
commit
1e4fe8057f
|
|
@ -59,7 +59,7 @@
|
||||||
or dict.item_text LIKE concat('%',#{params.nuName},'%')
|
or dict.item_text LIKE concat('%',#{params.nuName},'%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
order by a.batch_no,a.dimension,a.device_type,a.device_model,a.sn
|
order by a.create_time desc,a.dimension asc,a.device_type asc ,a.device_model asc ,a.sn asc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="findAllPage" parameterType="com.nu.modules.manager.entity.DeviceManager" resultType="com.nu.modules.manager.entity.DeviceManager">
|
<select id="findAllPage" parameterType="com.nu.modules.manager.entity.DeviceManager" resultType="com.nu.modules.manager.entity.DeviceManager">
|
||||||
|
|
@ -88,7 +88,7 @@
|
||||||
<if test="params.batchNo != null and params.batchNo != ''">
|
<if test="params.batchNo != null and params.batchNo != ''">
|
||||||
AND a.batch_no = #{params.batchNo}
|
AND a.batch_no = #{params.batchNo}
|
||||||
</if>
|
</if>
|
||||||
order by a.batch_no,a.dimension,a.device_type,a.device_model,a.sn
|
order by a.create_time desc,a.dimension asc,a.device_type asc ,a.device_model asc ,a.sn asc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="findBySn" parameterType="com.nu.modules.manager.entity.DeviceManager" resultType="com.nu.modules.manager.entity.DeviceManager">
|
<select id="findBySn" parameterType="com.nu.modules.manager.entity.DeviceManager" resultType="com.nu.modules.manager.entity.DeviceManager">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue