From 7f8a45a749419c3da5b81c4683f0b8034f5280f3 Mon Sep 17 00:00:00 2001 From: wangpengfei <274878379@qq.com> Date: 星期二, 25 七月 2023 15:20:09 +0800 Subject: [PATCH] fix --- constvar/const.go | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/constvar/const.go b/constvar/const.go index 7cdfaa5..dbb8fbb 100644 --- a/constvar/const.go +++ b/constvar/const.go @@ -52,3 +52,18 @@ CurrencyTypeEUR // 娆у厓 CurrencyTypeGBP // 鑻遍晳 ) + +type MenuType string + +const ( + MenuTypeClient MenuType = "client" +) + +type VettingType int + +const ( + VettingTypeClient VettingType = iota + 1 + VettingTypeSales + VettingTypeSalesChance + VettingTypeSalesChanceFollow +) -- Gitblit v1.8.0