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