52 lines
2.4 KiB
Go
52 lines
2.4 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/datatypes"
|
|
)
|
|
|
|
type GameAccount struct {
|
|
ID uint64 `gorm:"primaryKey" json:"id"`
|
|
OwnerID uint64 `gorm:"not null;index" json:"owner_id"`
|
|
GameName string `gorm:"size:64;not null;default:'delta_force'" json:"game_name"`
|
|
ServerRegion string `gorm:"size:64;not null" json:"server_region"`
|
|
LoginPlatform string `gorm:"size:64;not null" json:"login_platform"`
|
|
Title string `gorm:"size:128;not null" json:"title"`
|
|
Description string `json:"description"`
|
|
RankLevel string `gorm:"size:64;not null;default:''" json:"rank_level"`
|
|
HafCoinAmount int64 `gorm:"not null;default:0" json:"haf_coin_amount"`
|
|
AssetSummary datatypes.JSON `json:"asset_summary"`
|
|
SeasonTags datatypes.JSON `json:"season_tags"`
|
|
ScreenshotURLS datatypes.JSON `gorm:"column:screenshot_urls" json:"screenshot_urls"`
|
|
Status string `gorm:"size:32;not null;default:'draft'" json:"status"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
func (GameAccount) TableName() string {
|
|
return "game_accounts"
|
|
}
|
|
|
|
type RentalListing struct {
|
|
ID uint64 `gorm:"primaryKey" json:"id"`
|
|
AccountID uint64 `gorm:"not null;index" json:"account_id"`
|
|
OwnerID uint64 `gorm:"not null;index" json:"owner_id"`
|
|
Price float64 `gorm:"type:decimal(12,2);not null;default:0" json:"price"`
|
|
PriceHourly float64 `gorm:"type:decimal(12,2);not null;default:0" json:"price_hourly"`
|
|
PriceDaily float64 `gorm:"type:decimal(12,2);not null;default:0" json:"price_daily"`
|
|
PriceWeekly float64 `gorm:"type:decimal(12,2);not null;default:0" json:"price_weekly"`
|
|
DepositAmount float64 `gorm:"type:decimal(12,2);not null;default:0" json:"deposit_amount"`
|
|
InTransaction bool `gorm:"not null;default:false" json:"in_transaction"`
|
|
Status string `gorm:"size:32;not null;default:'draft'" json:"status"`
|
|
ReviewStatus string `gorm:"size:32;not null;default:'none'" json:"review_status"`
|
|
ReviewReason string `gorm:"size:255;not null;default:''" json:"review_reason"`
|
|
PublishedAt *time.Time `json:"published_at"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|
|
|
|
func (RentalListing) TableName() string {
|
|
return "rental_listings"
|
|
}
|