You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
582 B
32 lines
582 B
namespace Sanhe.Abp.Features.LimitValidation; |
|
|
|
/// <summary> |
|
/// 限制策略。 |
|
/// </summary> |
|
public enum LimitPolicy : byte |
|
{ |
|
/// <summary> |
|
/// 按分钟限制 |
|
/// </summary> |
|
Minute = 0, |
|
/// <summary> |
|
/// 按小时限制 |
|
/// </summary> |
|
Hours = 10, |
|
/// <summary> |
|
/// 按天限制 |
|
/// </summary> |
|
Days = 20, |
|
/// <summary> |
|
/// 按周限制 |
|
/// </summary> |
|
Weeks = 30, |
|
/// <summary> |
|
/// 按月限制 |
|
/// </summary> |
|
Month = 40, |
|
/// <summary> |
|
/// 按年限制 |
|
/// </summary> |
|
Years = 50 |
|
}
|
|
|