55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "DeviceProduction",
|
||
|
"base": "VnModel",
|
||
|
"options": {
|
||
|
"mysql": {
|
||
|
"table": "deviceProduction"
|
||
|
}
|
||
|
},
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "number",
|
||
|
"id": true
|
||
|
},
|
||
|
"imei": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"modelFk": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"macWifi": {
|
||
|
"type" : "string"
|
||
|
},
|
||
|
"serialNumber": {
|
||
|
"type" : "string"
|
||
|
},
|
||
|
"android_id": {
|
||
|
"type" : "string"
|
||
|
},
|
||
|
"purchased": {
|
||
|
"type" : "date"
|
||
|
},
|
||
|
"stateFk": {
|
||
|
"type" : "string"
|
||
|
},
|
||
|
"isInScaleFusion": {
|
||
|
"type" : "boolean"
|
||
|
},
|
||
|
"description": {
|
||
|
"type" : "string"
|
||
|
}
|
||
|
},
|
||
|
"relations": {
|
||
|
"model": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "DeviceProductionModels",
|
||
|
"foreignKey": "modelFk"
|
||
|
},
|
||
|
"state": {
|
||
|
"type": "belongsTo",
|
||
|
"model": "DeviceProductionState",
|
||
|
"foreignKey": "stateFk"
|
||
|
}
|
||
|
}
|
||
|
}
|