salix/modules/client/back/models/client-contact.json

35 lines
686 B
JSON
Raw Permalink Normal View History

{
"name": "ClientContact",
"description": "Client phone contacts",
"base": "VnModel",
"mixins": {
"Loggable": true
},
"options": {
2022-05-12 06:06:30 +00:00
"mysql": {
"table": "clientContact"
}
},
"validateUpsert": true,
"properties": {
2022-05-12 06:06:30 +00:00
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2022-05-12 06:06:30 +00:00
"id": true,
"description": "Identifier"
},
"name": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"relations": {
2022-05-12 06:06:30 +00:00
"client": {
"type": "belongsTo",
"model": "Client",
"foreignKey": "clientFk"
}
}
}