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

30 lines
567 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"
},
"name": {
"type": "string",
"required": true
},
"graceDays": {
"type": "string"
},
"outstandingDebt": {
"type": "Number"
},
"ibanRequired": {
"type": "boolean"
}
}
}