33 lines
723 B
C#
33 lines
723 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BackupAndImport.Entitys.alitools
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 订单状态信息
|
|||
|
/// </summary>
|
|||
|
public class AliOrder
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 用户账号
|
|||
|
/// </summary>
|
|||
|
public string username { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 订单号
|
|||
|
/// </summary>
|
|||
|
public string orderid { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 订单状态
|
|||
|
/// </summary>
|
|||
|
public string status { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 冻结时间
|
|||
|
/// </summary>
|
|||
|
public string endtime { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|