333
This commit is contained in:
27
MyCode.Project.Infrastructure/Enumeration/DirectFlag.cs
Normal file
27
MyCode.Project.Infrastructure/Enumeration/DirectFlag.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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 DirectFlag
|
||||
{
|
||||
/// <summary>
|
||||
/// 增加
|
||||
/// </summary>
|
||||
[Description("增加")]
|
||||
Plus = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 减少
|
||||
/// </summary>
|
||||
[Description("减少")]
|
||||
Less = -1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user