using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.Application
{
///
/// 车间动向枚举
///
[Description("车间动向枚举")]
public enum WorkshopEnum
{
///
/// 储位区
///
[Description("储位区")]
Storage = 1,
///
/// 缓存区
///
[Description("缓存区")]
Cache = 2,
}
}