yao/tests/models/service.json
2021-10-18 22:01:25 +08:00

153 lines
3.2 KiB
JSON

{
"name": "云服务库",
"table": {
"name": "service",
"comment": "云服务表",
"engine": "InnoDB"
},
"columns": [
{ "name": "id", "type": "ID" },
{
"name": "short_name",
"type": "string",
"length": 200,
"comment": "简称",
"nullable": true,
"index": true
},
{
"name": "name",
"type": "string",
"length": 200,
"comment": "服务名称",
"index": true
},
{
"name": "kind_id",
"type": "bigInteger",
"length": 200,
"comment": "服务类型",
"index": true
},
{
"name": "manu_id",
"type": "bigInteger",
"length": 200,
"comment": "所属厂商",
"index": true
},
{
"name": "registed_at",
"type": "string",
"length": 200,
"comment": "注册地",
"nullable": true,
"index": true
},
{
"name": "link",
"type": "string",
"length": 200,
"comment": "官网地址",
"nullable": true
},
{
"name": "contact_name",
"type": "string",
"length": 200,
"comment": "联系人",
"nullable": true,
"index": true
},
{
"name": "contact_mobile",
"type": "string",
"comment": "联系电话",
"nullable": true,
"index": true
},
{
"name": "fields",
"type": "json",
"comment": "JSON|服务领域(多选)",
"nullable": true,
"index": true
},
{
"name": "price_options",
"type": "json",
"length": 500,
"nullable": true,
"comment": "订阅方式(多选)",
"index": true
},
{
"name": "industries",
"type": "json",
"comment": "JSON|行业覆盖(多选)",
"nullable": true,
"index": true
},
{
"name": "rank",
"type": "integer",
"default": 9999999,
"comment": "查询排序"
},
{
"name": "status",
"type": "enum",
"default": "enabled",
"option": ["enabled", "disabled"],
"comment": "状态 enabled 开启, disabled 关闭",
"index": true
}
],
"relations": {
"manu": {
"type": "hasOne",
"model": "manu",
"key": "id",
"foreign": "manu_id",
"query": { "select": ["id", "name", "short_name", "status"] }
},
"kind": {
"type": "hasOne",
"model": "kind",
"key": "id",
"foreign": "kind_id",
"query": { "select": ["id", "name"] }
}
},
"option": { "timestamps": true, "soft_deletes": true },
"values": [
{
"name": "腾讯云主机CVM",
"short_name": "云主机",
"kind_id": 3,
"manu_id": 1,
"price_options": ["按月订阅"]
},
{
"name": "腾讯云磁盘",
"short_name": "云磁盘",
"kind_id": 6,
"manu_id": 1,
"price_options": ["按月订阅"]
},
{
"name": "阿里主机",
"short_name": "云主机",
"kind_id": 3,
"manu_id": 2,
"price_options": ["按月订阅"]
},
{
"name": "UCloud云主机",
"short_name": "云主机",
"kind_id": 3,
"manu_id": 3,
"price_options": ["按月订阅"]
}
]
}