This commit is contained in:
Daniel 2025-07-04 16:42:37 +08:00
parent eafe42fe59
commit 99db625cf7
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
5 changed files with 24 additions and 17 deletions

View file

@ -16,8 +16,8 @@
package av
// ColumnCalc 描述了列(字段)计算操作和结果的结构。
type ColumnCalc struct {
// FieldCalc 描述了字段计算操作和结果的结构。
type FieldCalc struct {
Operator CalcOperator `json:"operator"` // 计算操作符
Result *Value `json:"result"` // 计算结果
}