Archived
1

Latest game update reflections

This commit is contained in:
2017-11-26 19:38:25 +04:00
parent 7803242588
commit b57cacb4d4
5 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package dbmapping
import (
"time"
)
// OrderCompletion is a struct, which represents `orders_completions` table item in databse.
type OrderCompletion struct {
ID int `db:"id"`
OrderID int `db:"order_id"`
ExecutorID int `db:"executor_id"`
CreatedAt time.Time `db:"created_at"`
}