45 lines
739 B
JSON
45 lines
739 B
JSON
{
|
|
"name": "AgencyMode",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "agencyMode"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"description": {
|
|
"type": "string"
|
|
},
|
|
"m3": {
|
|
"type": "Number"
|
|
},
|
|
"inflation": {
|
|
"type": "Number"
|
|
},
|
|
"reportMail": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"relations": {
|
|
"agency": {
|
|
"type": "belongsTo",
|
|
"model": "Agency",
|
|
"foreignKey": "agencyFk"
|
|
},
|
|
"agencyType": {
|
|
"type": "belongsTo",
|
|
"model": "AgencyType",
|
|
"foreignKey": "agencyTypeFk"
|
|
}
|
|
}
|
|
}
|