将 bookmark.go 重命名为 main.go,并调整包引用路径。将 bookmarks 和 user_np 两个模块的处理逻辑合并到同一个服务中,统一注册路由。同时更新了相关 API 的引用路径,确保生成代码与内部实现正确绑定。 此外,移除了独立的 user_np 服务入口文件,其功能已整合至 bookmark 服务中。 配置文件中调整了 user_np 和 vfs 服务的端口及部分接口定义,完善了用户 相关操作的路径参数和请求体结构。
20 lines
686 B
Go
20 lines
686 B
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Bookmark struct {
|
|
ID int64 `json:"id" gorm:"primaryKey;autoIncrement"`
|
|
ExternalID int64 `json:"external_id" gorm:"uniqueIndex;not null"`
|
|
Name string `json:"name" gorm:"not null;index;size:255"`
|
|
Link *string `json:"link" gorm:"type:url"`
|
|
Detail *string `json:"detail" gorm:"type:text"`
|
|
Description *string `json:"description" gorm:"type:text"`
|
|
CreatedAt time.Time `json:"created_at" gorm:"autoCreateTime"`
|
|
UpdatedAt time.Time `json:"updated_at" gorm:"autoUpdateTime"`
|
|
DeletedAt gorm.DeletedAt `json:"deleted_at" gorm:"index"`
|
|
}
|