🎨 Update av

This commit is contained in:
Daniel 2023-07-03 11:44:20 +08:00
parent e6aa17249a
commit 844c2916d8
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -40,9 +40,9 @@ type AttributeView struct {
Rows []*Row `json:"rows"` // 表格行记录
Type AttributeViewType `json:"type"` // 属性视图类型
Projections []string `json:"projections"` // 显示的列名SELECT *
Filters []*AttributeViewFilter `json:"filters"` // 过滤规则WHERE ...
Sorts []*AttributeViewSort `json:"sorts"` // 排序规则ORDER BY ...
Projections []string `json:"projections"` // 显示的列名
Filters []*AttributeViewFilter `json:"filters"` // 过滤规则
Sorts []*AttributeViewSort `json:"sorts"` // 排序规则
}
// AttributeViewType 描述了属性视图的类型。