forked from ebhomengo/niki
20 lines
547 B
Go
20 lines
547 B
Go
package benefactorkindboxparam
|
|
|
|
import (
|
|
"time"
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
)
|
|
|
|
type KindBoxRegisterEmptyingRequest struct {
|
|
KindBoxID uint `json:"-" param:"id"`
|
|
BenefactorID uint `json:"-"`
|
|
ReturnAddressID uint `json:"return_address_id" example:"1"`
|
|
ReturnReferTimeID uint `json:"return_refer_time_id" example:"1"`
|
|
ReturnReferDate time.Time `json:"return_refer_date" example:"2025-01-02T15:04:05Z"`
|
|
}
|
|
|
|
type KindBoxRegisterEmptyingRequestResponse struct {
|
|
entity.KindBox `json:"kind_box"`
|
|
}
|