Commit f6c5ff82 authored by 吴春's avatar 吴春

提交代码

parent 4cc05704
using System;
using System.Collections.Generic;
using System.Text;
using Mall.Common.Plugin;
namespace Mall.Common.Enum.Point
{
/// <summary>
/// 订单状态 0-待付款,1-已支付,2-已确认,3已完成
/// </summary>
public enum OrderStausEnum
{
/// <summary>
/// 待付款
/// </summary>
[EnumField("待付款")]
NoPaid = 0,
/// <summary>
/// 待确认
/// </summary>
[EnumField("待确认")]
Paid = 1,
/// <summary>
/// 待上课
/// </summary>
[EnumField("待上课")]
NoClass = 2,
/// <summary>
/// 完成
/// </summary>
[EnumField("完成")]
Complete = 4
}
}
......@@ -66,7 +66,7 @@ namespace Mall.Model.Entity.Point
/// <summary>
/// 订单状态 0-代付款,1-已支付,2-已确认,3已完成
/// </summary>
public int OrderStaus { get; set; }
public OrderStausEnum OrderStaus { get; set; }
/// <summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment