salix/services/client/common/models/tpv-merchant.json

33 lines
668 B
JSON
Raw Normal View History

2018-09-25 06:47:11 +00:00
{
"name": "TpvMerchant",
"base": "VnModel",
"options": {
"mysql": {
"table": "tpvMerchant",
"database": "hedera"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"description": {
"type": "string",
"required": true
},
"secretKey": {
"type": "string",
"required": true
}
},
"relations": {
"company": {
"type": "belongsTo",
"model": "Company",
"foreignKey": "companyFk"
}
}
}