2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxreqparam
|
|
|
|
|
2024-07-09 14:45:50 +00:00
|
|
|
import (
|
|
|
|
"time"
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2024-07-09 14:45:50 +00:00
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
)
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2024-07-09 14:45:50 +00:00
|
|
|
type KindBoxReqUpdateRequest struct {
|
|
|
|
ID uint `json:"-" param:"id"`
|
|
|
|
KindBoxType entity.KindBoxType `json:"kind_box_type"`
|
|
|
|
CountRequested uint `json:"count_requested"`
|
|
|
|
CountAccepted uint `json:"count_accepted"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
DeliverReferTimeID uint `json:"deliver_refer_time_id"`
|
|
|
|
DeliverReferDate time.Time `json:"deliver_refer_date"`
|
|
|
|
DeliverAddressID uint `json:"deliver_address_id"`
|
|
|
|
SenderAgentID uint `json:"sender_agent_id"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|