using JiepeiWMS.Common.Helper;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace JiepeiWMS.Common.Enums
{
public enum EnumWMPurchaseType
{
///
/// 对内采购
///
[Description("对内采购")]
InsidePurchase = 1,
///
/// 对外采购
///
[Description("对外采购")]
OuterPurchase = 2,
}
}