using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Core.Enums
{
///
/// 启禁状态
///
public enum EnableEnum
{
///
/// 禁用
///
[Description("禁用")]
Disable = 0,
///
/// 启用
///
[Description("启用")]
Enable = 1,
}
#region 库存状态
#endregion 库存状态
public enum OperateType
{
人工删除 = 1,
自动删除 = 2,
人工恢复 = 3,
自动恢复 = 4,
人工完成 = 5,
自动完成 = 6,
}
}