🎨 新增酒单CRUD & 喜欢的酒单列表CRUD

This commit is contained in:
2023-04-27 17:36:07 +08:00
parent d6e256ef9e
commit 1212e999cc
13 changed files with 140 additions and 12 deletions

View File

@@ -11,6 +11,9 @@ func databaseTable() {
dbs := []any{
new(entity.User), // 普通用户
new(entity.OAuth2Client), // OAuth2客户端
new(entity.Wine), // 酒单
new(entity.Material), // 酒单材料
new(entity.LikeWine), // 喜欢的酒单
}