27 lines
510 B
C#
27 lines
510 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VOL.Entity.Enum
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 学校状态
|
|||
|
/// </summary>
|
|||
|
public enum SchoolStatus
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 启用
|
|||
|
/// </summary>
|
|||
|
[Description("启用")]
|
|||
|
Enable = 1,
|
|||
|
/// <summary>
|
|||
|
/// 禁用
|
|||
|
/// </summary>
|
|||
|
[Description("禁用")]
|
|||
|
Disable = 2
|
|||
|
}
|
|||
|
}
|