7658-devToTest_2428 #2663
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"name": "PayrollComponent",
|
||||
"base": "VnModel",
|
||||
"options": {
|
||||
"mysql": {
|
||||
"table": "payrollComponent"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"id": {
|
||||
"id": true,
|
||||
"type": "number"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"isSalaryAgreed": {
|
||||
"type": "number"
|
||||
},
|
||||
"isVariable": {
|
||||
"type": "number"
|
||||
},
|
||||
"isException": {
|
||||
"type": "number"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,45 @@
|
|||
{
|
||||
"name": "WorkerIncome",
|
||||
"base": "VnModel",
|
||||
"options": {
|
||||
"mysql": {
|
||||
"table": "workerIncome"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
"id": {
|
||||
"id": true,
|
||||
"type": "number"
|
||||
},
|
||||
"debit": {
|
||||
"type": "number"
|
||||
},
|
||||
"credit": {
|
||||
"type": "number"
|
||||
},
|
||||
"incomeTypeFk": {
|
||||
"type": "number"
|
||||
},
|
||||
"paymentDate": {
|
||||
"type": "date"
|
||||
},
|
||||
"workerFk": {
|
||||
"type": "number"
|
||||
},
|
||||
"concept": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"relations": {
|
||||
"payrollComponent": {
|
||||
"type": "belongsTo",
|
||||
"model": "payrollComponent",
|
||||
"foreignKey": "id"
|
||||
},
|
||||
"worker": {
|
||||
"type": "belongsTo",
|
||||
"model": "Worker",
|
||||
"foreignKey": "id"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue