From 9cd57471a8f53f74893bd75345e63406adbb4083 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 16:02:51 +0800 Subject: [PATCH] fix --- data_type.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/data_type.go b/data_type.go index f32d44c..89707f3 100644 --- a/data_type.go +++ b/data_type.go @@ -29,9 +29,9 @@ const ( ) const ( - DataStatusNotFound = "NOT_FOUND" - DataStatusNotIsNil = "IS_NIL" - DataStatusNotIsZero = "IS_ZERO" - DataStatusNotIsEmpty = "IS_EMPTY" - DataStatusNotIsFalse = "IS_FALSE" + DataStatusNotFound = "NOT_FOUND" + DataStatusIsNil = "IS_NIL" + DataStatusIsZero = "IS_ZERO" + DataStatusIsEmpty = "IS_EMPTY" + DataStatusIsFalse = "IS_FALSE" )