salix/modules/ticket/back/models/ticket-log.json

49 lines
907 B
JSON
Raw Normal View History

{
"name": "TicketLog",
2023-04-24 17:10:04 +00:00
"base": "Log",
"options": {
"mysql": {
"table": "ticketLog"
}
2024-03-04 14:00:43 +00:00
},
"properties": {
"id": {
2024-05-20 09:14:30 +00:00
"type": "number",
"id": true
2024-03-04 14:00:43 +00:00
},
"originFk": {
"type": "number"
},
"userFk": {
"type":"number"
},
"action": {
"type": "string"
},
"creationDate": {
"type": "date"
},
"description": {
"type": "string"
},
2024-03-06 11:03:35 +00:00
"changedModel": {
2024-03-04 14:00:43 +00:00
"type": "string"
},
"oldInstance": {
2024-03-13 15:29:05 +00:00
"type": "any"
2024-03-04 14:00:43 +00:00
},
"newInstance": {
2024-03-13 15:29:05 +00:00
"type": "any"
2024-03-04 14:00:43 +00:00
},
"changedModelId": {
2024-03-13 15:29:05 +00:00
"type": "string"
2024-03-04 14:00:43 +00:00
},
"changedModelValue": {
"type": "string"
2024-04-11 13:56:17 +00:00
},
"summaryId": {
"type":"string"
2024-03-04 14:00:43 +00:00
}
}
}