增加数据状态定义

This commit is contained in:
白茶清欢 2024-04-29 13:57:35 +08:00
parent 00e0a924ef
commit 7d7191726f
1 changed files with 8 additions and 0 deletions

View File

@ -27,3 +27,11 @@ const (
DataTypeMapStrSlice = "map[string][]any" // map -> map[string][]interface{}
DataTypeAny = "any" // 任意类型 -> interface{}
)
const (
DataStatusNotFound = "NOT_FOUND"
DataStatusNotIsNil = "IS_NIL"
DataStatusNotIsZero = "IS_ZERO"
DataStatusNotIsEmpty = "IS_EMPTY"
DataStatusNotIsFalse = "IS_FALSE"
)