From 64103a1c8c40c708bd2c01451d51ac6d076bb4d0 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Wed, 30 Oct 2024 15:42:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/super/implement/user_app_domain_implement.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/super/implement/user_app_domain_implement.go b/src/super/implement/user_app_domain_implement.go index 8cb7f62..067d990 100644 --- a/src/super/implement/user_app_domain_implement.go +++ b/src/super/implement/user_app_domain_implement.go @@ -52,7 +52,7 @@ func (u UserAppDomainDb) GetUserAppDomain(masterId int) (m *model.UserAppDomain, } func (u UserAppDomainDb) GetUserAppDomainByPlatform(masterId int, platform string) (m *model.UserAppDomain, err error) { m = new(model.UserAppDomain) - has, err := u.Db.Where("uuid =? and type=? and is_ssl=1", masterId, platform, 1).Get(m) + has, err := u.Db.Where("uuid =? and type=? and is_ssl=?", masterId, platform, 1).Get(m) if err != nil { return nil, zhios_order_relate_logx.Error(err) }