refs #7409 back
This commit is contained in:
parent
9b80ef73a8
commit
54b6ef491f
|
@ -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