You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
519 B
24 lines
519 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace QuanTan.SDK.Model
|
|
{
|
|
public class QuanTanCancelOrderResponse
|
|
{
|
|
///// <summary>
|
|
///// 200成功 400失败
|
|
///// </summary>
|
|
//public string Status { get; set; }
|
|
|
|
//public string message { get; set; }
|
|
|
|
public int OrderId { get; set; }
|
|
|
|
public int GroupOrderId { get; set; }
|
|
|
|
public string OrderSn { get; set; }
|
|
|
|
public string CancelStatus { get; set; }
|
|
}
|
|
}
|
|
|