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
+20
View File
@@ -0,0 +1,20 @@
package main
import (
"91porn-server/generate/common"
"go.mongodb.org/mongo-driver/bson/primitive"
"time"
)
type ImGroupMember struct {
ID primitive.ObjectID `bson:"_id,omitempty" json:"id" comment:"文档id"`
Uid int64 `json:"uid" bson:"uid" comment:"uid"`
Price int64 `json:"price" bson:"price" comment:"进群花费价格"`
CreatedAt time.Time `json:"createdAt" bson:"createdAt" comment:"创建时间"`
}
func main() {
g := common.NewGen("91porn-server", "im群组成员")
g.AppGenerate = true
g.Generate(ImGroupMember{})
}