update device data structre
This commit is contained in:
1 file changed
+7
-2
+7
-2
@@ -1,8 +1,13 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
// Device holds the structure for the Device collection in mongo
|
// Device holds the structure for the device collection in mongo
|
||||||
type Device struct {
|
type Device struct {
|
||||||
ID string `json:"ID" bson:"ID"` // MongoDB ID
|
ID string `json:"_id" bson:"_id"` // MongoDB ID
|
||||||
|
Details DeviceDetails `json:"device" bson:"device"` // Details
|
||||||
|
}
|
||||||
|
|
||||||
|
// Device holds the structure for the Device collection in mongo
|
||||||
|
type DeviceDetails struct {
|
||||||
Type string `json:"Type" bson:"Type"` // eg. Laptop, Ipdad, etc
|
Type string `json:"Type" bson:"Type"` // eg. Laptop, Ipdad, etc
|
||||||
Code string `json:"Code" bson:"Code"` // eg. SULH-LAP-01
|
Code string `json:"Code" bson:"Code"` // eg. SULH-LAP-01
|
||||||
Parent string `json:"Parent" bson:"Parent"` // Parent cow Mongo ID
|
Parent string `json:"Parent" bson:"Parent"` // Parent cow Mongo ID
|
||||||
|
|||||||
Reference in new issue
Block a user