-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Ib3e1adb3972420cc18ae9a06ef5632acce9680aa
- Loading branch information
1 parent
6e9a5a2
commit 096c132
Showing
11 changed files
with
192 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
app/src/main/java/com/tencent/iot/explorer/link/kitlink/entity/BindDevResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.tencent.iot.explorer.link.kitlink.entity | ||
|
||
class BindDevResponse { | ||
var RequestId = "" | ||
var Data: DeviceInfo? = null | ||
} |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/com/tencent/iot/explorer/link/kitlink/entity/DeviceInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.tencent.iot.explorer.link.kitlink.entity | ||
|
||
import com.tencent.iot.explorer.link.core.auth.entity.DeviceEntity | ||
|
||
class DeviceInfo { | ||
var AppDeviceInfo: DeviceEntity? = null | ||
} |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/com/tencent/iot/explorer/link/kitlink/entity/GatewaySubDevsResp.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package com.tencent.iot.explorer.link.kitlink.entity | ||
|
||
class GatewaySubDevsResp { | ||
var RequestId = "" | ||
var Total = 0 | ||
var DeviceList = arrayListOf<SubDevice>() | ||
} |
11 changes: 11 additions & 0 deletions
11
app/src/main/java/com/tencent/iot/explorer/link/kitlink/entity/SubDevice.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.tencent.iot.explorer.link.kitlink.entity | ||
|
||
class SubDevice { | ||
var ProductId = "" | ||
var DeviceName = "" | ||
var DeviceId = "" | ||
var AliasName = "" | ||
var IconUrl = "" | ||
var IconUrlGrid = "" | ||
var BindStatus = 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.