2025-04-21 14:10:27 +08:00

85 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
/// <summary>
/// 优惠券的状态
/// </summary>
public enum CouponFlag
{
/// <summary>
/// 新建
/// </summary>
[Description("新建")]
Create = 0,
//10=进行中100=结束95=删除。
/// <summary>
/// 挂单
/// </summary>
[Description("进行中")]
Running = 10,
/// <summary>
/// 结束
/// </summary>
[Description("结束")]
Over = 100,
/// <summary>
/// 删除
/// </summary>
[Description("删除")]
Delete = 95,
/// <summary>
/// 已领完
/// </summary>
[Description("已领完")]
TookOver = 101
}
/// <summary>
/// 1=直营2=联营3=加盟。
/// </summary>
public enum ShopKind
{
/// <summary>
/// 直营
/// </summary>
[Description("直营")]
ZhiYing = 1,
/// <summary>
/// 联营
/// </summary>
[Description("联营")]
LianYing = 2,
/// <summary>
/// 加盟
/// </summary>
[Description("加盟")]
JiaMeng = 3,
/// <summary>
/// 员工内购
/// </summary>
[Description("员工内购")]
InternalPurchase = 4,
}
}