using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.Warehouse
{
public enum WarehouseTypeEnum
{
///
/// 食品区
///
[Description("食品区")]
Food = 1,
///
/// 工业区
///
[Description("工业区")]
Industry = 2,
}
}