2022-12-26 07:08:14 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ProductApplyRequestPayload struct {
|
|
|
|
RequestID string `json:"requestId"`
|
|
|
|
}
|
2023-03-01 03:42:54 +00:00
|
|
|
|
|
|
|
type ProductRequestChangeStatus struct {
|
|
|
|
RequestID string `json:"requestId"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|