feat: basic structure
This commit is contained in:
9
internal/model/account.go
Normal file
9
internal/model/account.go
Normal file
@ -0,0 +1,9 @@
|
||||
package model
|
||||
|
||||
type Account struct {
|
||||
ID uint `json:"id" gorm:"primaryKey"`
|
||||
VirtualPath string `json:"virtual_path"`
|
||||
Index int `json:"index"`
|
||||
Type string `json:"type"`
|
||||
Status string `json:"status"`
|
||||
}
|
Reference in New Issue
Block a user