salix/modules/client/back/models/client-credit-limit.json

26 lines
417 B
JSON

{
"name": "ClientCreditLimit",
"base": "VnModel",
"options": {
"mysql": {
"table": "clientCreditLimit"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"maxAmount": {
"type": "Number"
}
},
"relations": {
"role": {
"type": "belongsTo",
"model": "Role",
"foreignKey": "roleFk"
}
}
}