2021-04-10 18:46:51 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Message struct {
|
2021-04-11 09:48:15 +00:00
|
|
|
ID string `bson:"_id"`
|
|
|
|
TicketID string `bson:"TicketID"`
|
2021-04-10 18:46:51 +00:00
|
|
|
UserID string `bson:"UserID"`
|
|
|
|
SessionID string `bson:"SessionID"`
|
|
|
|
|
2021-04-11 09:48:15 +00:00
|
|
|
Message string `bson:"Messsage"`
|
|
|
|
Files []string `bson:"Files"`
|
|
|
|
|
|
|
|
CreatedAt time.Time `bson:"CreatedAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Ticket struct {
|
|
|
|
ID string `bson:"_id"`
|
|
|
|
UserID string `bson:"UserID"`
|
|
|
|
SessionID string `bson:"SessionID"`
|
2021-04-10 18:46:51 +00:00
|
|
|
|
2021-04-11 09:48:15 +00:00
|
|
|
Title string `bson:"Title"`
|
2021-04-10 18:46:51 +00:00
|
|
|
|
|
|
|
CreatedAt time.Time `bson:"CreatedAt"`
|
|
|
|
}
|