登录注册

This commit is contained in:
2026-05-15 10:44:52 +08:00
parent 193955d983
commit da935a122f
24 changed files with 763 additions and 99 deletions

View File

@@ -0,0 +1,10 @@
package com.example.defenseapplication.bean
data class DeviceBean(
val id: String,
val deviceName: String,
val status: String,
val deviceType: String,
val parentId: String,
val createTime: String?
)