2023-12-16 07:20:01 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2023-12-20 08:27:13 +00:00
|
|
|
type KindBox struct {
|
2023-12-16 07:20:01 +00:00
|
|
|
ID uint
|
2023-12-26 17:53:25 +00:00
|
|
|
KindBoxReqID uint // TODO like database model
|
|
|
|
BenefactorID uint // TODO need in business entity
|
2023-12-16 07:20:01 +00:00
|
|
|
TotalAmount uint
|
2023-12-22 21:25:16 +00:00
|
|
|
ReceiverID uint
|
2023-12-20 15:39:25 +00:00
|
|
|
SenderID uint
|
2023-12-16 07:20:01 +00:00
|
|
|
SerialNumber string
|
2023-12-22 21:25:16 +00:00
|
|
|
Status KindBoxStatus
|
2023-12-16 07:20:01 +00:00
|
|
|
StatusChangedAt *time.Time
|
|
|
|
}
|