namespace Admin.NET.Application;
///
/// 单据来源
///
[Description("单据来源")]
public enum SourceByEnum
{
///
/// 自建
///
[Description("自建")]
自建 = 0,
///
/// 单据来源于对接系统
///
[Description("ERP")]
ERP = 1,
/////
///// 单据通过excel导入
/////
[Description("导入")]
导入 =2,
///
/// 单据来源于其他业务自动创建
///
[Description("系统")]
系统 =3
}