From 1b487799a95b60345c04c831a0e8a2870e07f9f4 Mon Sep 17 00:00:00 2001 From: hujiebin Date: Thu, 23 Feb 2023 18:50:43 +0800 Subject: [PATCH] Update types.go --- resource/mysql/types.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resource/mysql/types.go b/resource/mysql/types.go index 9e598d1..89481bb 100644 --- a/resource/mysql/types.go +++ b/resource/mysql/types.go @@ -91,3 +91,9 @@ const ( func TypeToString(t Type) string { return strconv.Itoa(int(t)) } + +//逻辑删除 +const ( + EXIST LogicDel = 1 + DEL LogicDel = 2 +) -- 2.22.0