salix/modules/client/back/models/tpv-merchant.json

32 lines
643 B
JSON
Raw Permalink Normal View History

2018-09-25 06:47:11 +00:00
{
"name": "TpvMerchant",
"base": "VnModel",
"options": {
"mysql": {
2018-12-17 10:28:39 +00:00
"table": "hedera.tpvMerchant"
2018-09-25 06:47:11 +00:00
}
},
"properties": {
"id": {
2022-05-12 07:47:47 +00:00
"type": "number",
2018-09-25 06:47:11 +00:00
"id": true,
"description": "Identifier"
},
"description": {
"type": "string",
"required": true
},
"secretKey": {
"type": "string",
"required": true
}
},
"relations": {
"company": {
"type": "belongsTo",
"model": "Company",
"foreignKey": "companyFk"
}
}
}