salix/modules/client/back/models/pay-method.json

36 lines
714 B
JSON
Raw Normal View History

{
2020-10-20 07:44:44 +00:00
"name": "PayMethod",
"base": "VnModel",
"options": {
"mysql": {
"table": "payMethod"
}
2017-05-09 12:04:44 +00:00
},
2020-10-20 07:44:44 +00:00
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
2021-08-15 06:35:14 +00:00
"code": {
"type": "string"
},
2020-10-20 07:44:44 +00:00
"name": {
"type": "string",
"required": true
},
"graceDays": {
"type": "string"
},
"outstandingDebt": {
"type": "Number"
},
"ibanRequiredForClients": {
"type": "boolean"
},
"ibanRequiredForSuppliers": {
2020-10-20 07:44:44 +00:00
"type": "boolean"
}
}
}