30 lines
659 B
C#
30 lines
659 B
C#
using New_College.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class CreateOrderModel : BaseResponse
|
|
{
|
|
/// <summary>
|
|
/// 订单ID
|
|
/// </summary>
|
|
public string OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易号
|
|
/// </summary>
|
|
public string PayNo { get; set; }
|
|
/// <summary>
|
|
/// 订单状态
|
|
/// </summary>
|
|
public EnumOrderType Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
public string CreateTime { get; set; }
|
|
}
|
|
}
|