using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPA.KitChen.GroupMealOrder.Core.Enum
{
public enum StatusEntity
{
///
/// 正常
///
[Description("正常")]
ENABLE = 0,
///
/// 停用
///
[Description("停用")]
DISABLE = 1,
}
}