From 7d7191726f0c0af78938f558ea7c0527424e5915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 29 Apr 2024 13:57:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=95=B0=E6=8D=AE=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E5=AE=9A=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data_type.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/data_type.go b/data_type.go index a8ef079..f32d44c 100644 --- a/data_type.go +++ b/data_type.go @@ -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" +)