using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.MaterielEnum
{
///
/// 物料基本分类
///
public enum MaterielTypeEnum
{
///
/// 成品
///
FinishProduct = 1,
///
/// 半成品
///
HalfProduct = 2,
///
/// 原材料
///
RawMateriel = 3,
///
/// 备件
///
SpareParts = 4
}
}