using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 销售订单项目类型
///
public enum SalesSheetItemType
{
///
/// 商品
///
[Description("商品")]
Goods = 0,
///
/// 服务
///
[Description("服务")]
Service = 1,
///
/// 套餐
///
[Description("套餐")]
ServiceSet = 2,
///
/// 卡券
///
[Description("卡券")]
ServiceCard = 3,
///
/// 自定义套餐
///
[Description("自定义套餐")]
ServiceCustom = 4,
///
/// 奖品池(待选择)
///
[Description("奖品池(待选择)")]
PrizePool = 5,
///
/// 代金券
///
[Description("代金券")]
Voucher = 6,
///
/// 优惠券
///
[Description("优惠券")]
Coupon = 7,
}
}