using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Core
{
///
/// 入库来源
///
public enum RuKuSourceEnum
{
///
/// 空托
///
[Description("空托")]
KONGTUO =1,
///
/// 物料
///
[Description("物料")]
WULIAO =2
}
}