From 7ec0aae8355ef7ae384cf3624e6c94202376c2fa Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Wed, 29 Nov 2023 10:54:22 +0800 Subject: [PATCH] update --- app/db/model/enterprise_with_alipay_app_auth_token.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app/db/model/enterprise_with_alipay_app_auth_token.go diff --git a/app/db/model/enterprise_with_alipay_app_auth_token.go b/app/db/model/enterprise_with_alipay_app_auth_token.go new file mode 100644 index 0000000..15e45eb --- /dev/null +++ b/app/db/model/enterprise_with_alipay_app_auth_token.go @@ -0,0 +1,7 @@ +package model + +type CompanyWithAlipayAppAuthToken struct { + Id int `json:"id" xorm:"not null pk autoincr INT(11)"` + CompanyId string `json:"company_id" xorm:"not null default '' comment('名称') VARCHAR(255)"` + AppAuthToken string `json:"app_auth_token" xorm:"not null TEXT"` +}