SubmitSelection.go 453 B

123456789101112131415161718
  1. package http_model
  2. type SubmitSelectionRequest struct {
  3. SelectionId string `json:"selection_id"` // 选品id
  4. SelectionStatus int `json:"selection_status"`
  5. }
  6. type SubmitSelectionData struct{}
  7. func NewSubmitSelectionRequest() *SubmitSelectionRequest {
  8. return new(SubmitSelectionRequest)
  9. }
  10. func NewSubmitSelectionResponse() *CommonResponse {
  11. resp := new(CommonResponse)
  12. resp.Data = new(SubmitSelectionData)
  13. return resp
  14. }