SignForSpecialLogisticRequest.go 321 B

1234567891011121314
  1. package http_model
  2. type SignForSpecialLogisticRequest struct {
  3. TaskId string `json:"task_id"`
  4. }
  5. func NewSignForSpecialLogisticRequest() *SignForSpecialLogisticRequest {
  6. return new(SignForSpecialLogisticRequest)
  7. }
  8. func NewSignForSpecialLogisticResponse() *CommonResponse {
  9. resp := new(CommonResponse)
  10. return resp
  11. }