|
package model
|
|
|
|
type ProductApplyRequestPayload struct {
|
|
RequestID string `json:"requestId"`
|
|
}
|
|
|
|
type ProductRequestChangeStatus struct {
|
|
RequestID string `json:"requestId"`
|
|
Status string `json:"status"`
|
|
}
|
|
|
|
type ProductCreateStepsPayload struct {
|
|
RequestID string `json:"requestId"`
|
|
}
|