64 lines
1.3 KiB
C#
64 lines
1.3 KiB
C#
|
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 SalesSheetItemType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 商品
|
|||
|
/// </summary>
|
|||
|
[Description("商品")]
|
|||
|
Goods = 0,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 服务
|
|||
|
/// </summary>
|
|||
|
[Description("服务")]
|
|||
|
Service = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 套餐
|
|||
|
/// </summary>
|
|||
|
[Description("套餐")]
|
|||
|
ServiceSet = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 卡券
|
|||
|
/// </summary>
|
|||
|
[Description("卡券")]
|
|||
|
ServiceCard = 3,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 自定义套餐
|
|||
|
/// </summary>
|
|||
|
[Description("自定义套餐")]
|
|||
|
ServiceCustom = 4,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 奖品池(待选择)
|
|||
|
/// </summary>
|
|||
|
[Description("奖品池(待选择)")]
|
|||
|
PrizePool = 5,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 代金券
|
|||
|
/// </summary>
|
|||
|
[Description("代金券")]
|
|||
|
Voucher = 6,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 优惠券
|
|||
|
/// </summary>
|
|||
|
[Description("优惠券")]
|
|||
|
Coupon = 7,
|
|||
|
}
|
|||
|
}
|