using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
///
/// 营业类型
///
public enum BusinessStatus
{
///
/// 停业
///
[Description("停业")]
Stop = 0,
///
/// 营业
///
[Description("营业")]
Normal = 1,
///
/// 撤店
///
[Description("撤店")]
Withdraw = 2
}
}