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