salix/services/production/common/models/ticket-state.json

33 lines
567 B
JSON
Raw Normal View History

{
"name": "TicketState",
2017-10-11 13:36:47 +00:00
"base": "VnModel",
"properties": {
2017-06-13 09:26:54 +00:00
"id": {
"id": true,
"type": "Number",
"forceId": false
},
"updated": {
"type": "Date",
"required": false
}
},
"relations": {
"ticket": {
"type": "belongsTo",
"model": "Ticket",
"foreignKey": "ticketFk"
},
"state": {
"type": "belongsTo",
"model": "State",
"foreignKey": "stateFk"
},
"employee": {
"type": "belongsTo",
"model": "Employee",
"foreignKey": "employeeFk"
}
2017-10-11 13:36:47 +00:00
}
}