54 lines
1.2 KiB
C#
54 lines
1.2 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 SalesServiceSetType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 销售表
|
|||
|
/// </summary>
|
|||
|
[Description("销售表")]
|
|||
|
Sales = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 预售
|
|||
|
/// </summary>
|
|||
|
[Description("销售表")]
|
|||
|
PreSales = 2,
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 套餐类型 1 服务套餐 2 自定义服务套餐 3 自定义商品套餐
|
|||
|
/// </summary>
|
|||
|
public enum ServiceSetType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 服务套餐
|
|||
|
/// </summary>
|
|||
|
[Description("服务套餐")]
|
|||
|
ServiceSet = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 自定义服务套餐
|
|||
|
/// </summary>
|
|||
|
[Description("自定义服务套餐")]
|
|||
|
CustomServiceSet = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 自定义商品套餐
|
|||
|
/// </summary>
|
|||
|
[Description("自定义商品套餐")]
|
|||
|
CustomGoodsSet = 3,
|
|||
|
|
|||
|
}
|
|||
|
}
|