34 lines
664 B
C#
34 lines
664 B
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 SalesType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 销售
|
|||
|
/// </summary>
|
|||
|
[Description("销售")]
|
|||
|
Sales = 0,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 退货
|
|||
|
/// </summary>
|
|||
|
[Description("退货")]
|
|||
|
Return = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 换货
|
|||
|
/// </summary>
|
|||
|
[Description("换货")]
|
|||
|
Exchange = 2,
|
|||
|
}
|
|||
|
}
|