代码生成:批量删除

This commit is contained in:
xiangheng
2024-09-12 13:43:18 +08:00
parent 79fb646900
commit 537efc0e50
13 changed files with 360 additions and 203 deletions

View File

@@ -18,8 +18,8 @@ type Col struct {
Key string
Width int // 宽度
Replace map[string]any //实现值的替换
Encode func(value any) any //暂未使用
Decode func(value any) (any, error) //实现类型、值的替换
Encode func(value any) any //编码函数-导出先Encode后Replace
Decode func(value any) (any, error) //解码函数-导入先Replace后Decode
}
// 定义编码接口