using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VOL.Entity.Enum
{
///
/// 学期
///
public enum SemesterEnum
{
///
/// 上学期
///
[Description("上学期")]
Prev = 1,
///
/// 下学期
///
[Description("下学期")]
Next = 2
}
}