salix/back/models/osticket-config.json

52 lines
985 B
JSON
Raw Normal View History

2022-07-21 11:11:24 +00:00
{
"name": "OsTicketConfig",
"base": "VnModel",
"options": {
"mysql": {
"table": "osTicketConfig"
}
},
"properties": {
"id": {
"type": "number",
"id": true,
"description": "Identifier"
},
"host": {
"type": "string"
},
"user": {
"type": "string"
},
"password": {
"type": "string"
},
"oldStatus": {
"type": "string"
2022-07-29 09:59:03 +00:00
},
"newStatusId": {
2022-07-21 11:11:24 +00:00
"type": "number"
},
"action": {
"type": "string"
2022-07-29 09:59:03 +00:00
},
"day": {
"type": "number"
},
"comment": {
"type": "string"
2022-09-16 09:46:55 +00:00
},
"hostDb": {
"type": "string"
},
"userDb": {
"type": "string"
},
"passwordDb": {
"type": "string"
},
"portDb": {
"type": "number"
2022-07-21 11:11:24 +00:00
}
}
}