Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
package proto
import (
"91porn-server/common/daichong"
"91porn-server/models/v/rchgamtmod"
"go.mongodb.org/mongo-driver/bson/primitive"
)
type CurryenyResp struct {
//代充
daichong.Chat `json:"daichong"`
//
List []*CurrencyListResponse `json:"list"`
}
type CurrencyListResponse struct {
//表id
ID primitive.ObjectID `bson:"_id,omitempty" json:"id"`
//货币数量
Amount int64 `json:"amount" bson:"amount" binding:"required"`
//货币价格
Money int64 `json:"money" bson:"money"`
//优惠描述
CouponDesc string `json:"couponDesc" bson:"couponDesc"`
//赠送vip天数
GiveVipDays int `json:"giveVipDays" bson:"giveVipDays"`
//赠送楼凤解锁次数
LouFengUnlockTimes int `json:"louFengUnlockTimes" bson:"louFengUnlockTimes"`
//类型名称
TypeName string `json:"typeName" bson:"typeName" binding:"required"`
//充值方式
RechargeType []rchgamtmod.PayChannelRes `json:"rchgType" bson:"rchgType"`
//赠送金币
GiveGold int64 `json:"giveGold" bson:"giveGold"`
}