mirror of https://github.com/rocboss/paopao-ce
commit
b2bf5bd3af
@ -1,6 +1,7 @@
|
||||
## 部署站点
|
||||
PaoPao部署站点信息。
|
||||
|
||||
| 名称 | 网址 | 备注 |
|
||||
| ----- | ----- | ----- |
|
||||
|泡泡|[www.paopao.info](https://www.paopao.info)|PaoPao官方站点|
|
||||
| 名称 | 网址 | 站长 | 备注 |
|
||||
| ----- | ----- | ----- | ----- |
|
||||
|泡泡|[www.paopao.info](https://www.paopao.info)|[ROC](https://www.paopao.info/#/user?username=roc 'roc(@paopao.info)')|PaoPao官方站点|
|
||||
|布里塔|[bulita.net](https://bulita.net)|[chendong](https://www.paopao.info/#/user?username=chendong 'chendong(@paopao.info)')|布里塔 - 招聘求职转发|
|
||||
|
@ -0,0 +1,54 @@
|
||||
// Copyright 2023 ROC. All rights reserved.
|
||||
// Use of this source code is governed by a MIT style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package jinzhu
|
||||
|
||||
import (
|
||||
"github.com/rocboss/paopao-ce/internal/conf"
|
||||
)
|
||||
|
||||
var (
|
||||
_anouncement string
|
||||
_anouncementContent string
|
||||
_attachment string
|
||||
_captcha string
|
||||
_comment string
|
||||
_commentContent string
|
||||
_commentReply string
|
||||
_contact string
|
||||
_contactGroup string
|
||||
_message string
|
||||
_post string
|
||||
_postAttachmentBill string
|
||||
_postCollection string
|
||||
_postContent string
|
||||
_postStar string
|
||||
_tag string
|
||||
_user string
|
||||
_walletRecharge string
|
||||
_walletStatement string
|
||||
)
|
||||
|
||||
func initTableName() {
|
||||
m := conf.DatabaseSetting.TableNames()
|
||||
_anouncement = m[conf.TableAnouncement]
|
||||
_anouncementContent = m[conf.TableAnouncementContent]
|
||||
_attachment = m[conf.TableAttachment]
|
||||
_captcha = m[conf.TableCaptcha]
|
||||
_comment = m[conf.TableComment]
|
||||
_commentContent = m[conf.TableCommentContent]
|
||||
_commentReply = m[conf.TableCommentReply]
|
||||
_contact = m[conf.TableContact]
|
||||
_contactGroup = m[conf.TableContactGroup]
|
||||
_message = m[conf.TableMessage]
|
||||
_post = m[conf.TablePost]
|
||||
_postAttachmentBill = m[conf.TablePostAttachmentBill]
|
||||
_postCollection = m[conf.TablePostCollection]
|
||||
_postContent = m[conf.TablePostContent]
|
||||
_postStar = m[conf.TablePostStar]
|
||||
_tag = m[conf.TableTag]
|
||||
_user = m[conf.TableUser]
|
||||
_walletRecharge = m[conf.TableWalletRecharge]
|
||||
_walletStatement = m[conf.TableWalletStatement]
|
||||
}
|
Loading…
Reference in new issue