using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS.Plugin.HIAWms.Domain.Shared.Enums
{
///
/// 采购类型
///
[Description("采购类型")]
public enum PurchaseTypeEnum
{
///
/// /自制
///
[Description("自制")]
SelfMade = 1,
///
/// 采购
///
[Description("采购")]
Purchased = 2,
///
/// 均可
///
[Description("均可")]
Both = 3
}
}