Skip to main content
Version: 3.1

EntityIndex 实体索引

结构声明

interface EntityIndex {
"concept": "EntityIndex", // 产品概念
"name": string, // 实体索引名称
"indexName": string, // 数据库索引名
"propertyNames": Array<string>, // propertyNames
"unique": boolean, // 是否唯一
"description": string, // 实体索引描述
}

示例

简单示例

{
"concept": "EntityIndex",
"name": "index1",
"indexName": "index1_dc56405c",
"propertyNames": [
"name",
"createdTime"
],
"unique": true,
"description": "某属性的索引"
}