🎨 基于内容块属性动态建立对应数据库表结构 https://github.com/siyuan-note/siyuan/issues/7521

This commit is contained in:
Liang Ding 2023-03-02 09:27:07 +08:00
parent aa664856cc
commit 7dcef7b84b
No known key found for this signature in database
GPG key ID: 136F30F901A2231D
4 changed files with 30 additions and 6 deletions

View file

@ -47,3 +47,10 @@ func (c *BaseColumn) Name() string {
func (c *BaseColumn) Type() string {
return c.BaseType
}
// ColumnValueResolver 描述了属性视图的列值解析器。
type ColumnValueResolver interface {
// Resolve 用于解析列值。
Resolve() string
}