salix/modules/travel/back/models/currency.json

26 lines
450 B
JSON
Raw Normal View History

2019-12-05 13:20:11 +00:00
{
"name": "Currency",
"base": "VnModel",
"options": {
"mysql": {
"table": "currency"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
"description": "Identifier"
},
"code": {
"type": "String"
},
"name": {
"type": "String"
},
"ratio": {
"type": "Number"
}
}
}