2023-12-20 08:27:13 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type KindBoxReq struct {
|
|
|
|
ID uint
|
2023-12-20 15:39:25 +00:00
|
|
|
TypeID uint
|
2023-12-20 08:27:13 +00:00
|
|
|
CountRequested uint
|
|
|
|
CountAccepted uint
|
|
|
|
BenefactorID uint
|
|
|
|
Status uint
|
|
|
|
Description string
|
|
|
|
StatusChangedAt *time.Time
|
|
|
|
}
|