hdkv
/
i2_bot
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/pull-requests.
i2_bot/lib/dbmapping/orders_completion.go

17 lines
405 B
Go
Raw Normal View History

2017-11-26 19:38:25 +04:00
// 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"`
}