设备类型管理

This commit is contained in:
2025-07-02 11:25:41 +08:00
parent 6b802f4546
commit a69aad227a
6 changed files with 107 additions and 15 deletions

View File

@ -28,11 +28,8 @@
<if test="criteria.typeName != null and criteria.typeName.trim() != ''">
and dt.type_name like concat('%', TRIM(#{criteria.typeName}), '%')
</if>
<if test="criteria.tenantId != null">
and dt.tenant_id = #{criteria.tenantId}
</if>
<if test="criteria.createBy != null">
and dt.create_by = #{criteria.createBy}
<if test="criteria.customerId != null">
and dt.owner_customer_id = #{criteria.customerId}
</if>
</where>
ORDER BY dt.create_time DESC