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
|
2024-01-23 07:39:58 +00:00
|
|
|
KindBoxReqID uint
|
|
|
|
BenefactorID uint
|
|
|
|
Type KindBoxType
|
2023-12-16 07:20:01 +00:00
|
|
|
TotalAmount uint
|
|
|
|
SerialNumber string
|
2023-12-22 21:25:16 +00:00
|
|
|
Status KindBoxStatus
|
2024-01-23 07:39:58 +00:00
|
|
|
SenderID uint
|
|
|
|
ReceiverID uint
|
2024-01-02 14:04:16 +00:00
|
|
|
StatusChangedAt time.Time
|
2023-12-16 07:20:01 +00:00
|
|
|
}
|