salix/modules/client/back/models/payroll-categories.json

21 lines
356 B
JSON
Raw Normal View History

2024-05-29 13:56:27 +00:00
{
2024-06-05 08:43:53 +00:00
"name": "PayrollCategory",
2024-05-29 13:56:27 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "payrollCategories"
}
},
"properties": {
"id": {
"type": "number"
},
"description": {
"type": "string"
},
"rate": {
"type": "number"
}
}
}