salix/services/loopback/common/models/company.json

20 lines
339 B
JSON
Raw Normal View History

2017-12-13 07:24:14 +00:00
{
2017-12-13 12:40:21 +00:00
"name": "Company",
"description": "Companies",
2017-12-13 07:24:14 +00:00
"base": "VnModel",
2017-12-13 12:40:21 +00:00
"options": {
"mysql": {
"table": "company"
2017-12-13 12:40:21 +00:00
}
},
2017-12-13 07:24:14 +00:00
"properties": {
"id": {
"id": true,
"type": "Number",
"description": "Identifier"
},
"code": {
"type": "String"
}
}
}