48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AUTS.Services.Enums
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 短字符串版本
|
|||
|
|
/// </summary>
|
|||
|
|
public enum ShortStringVersion
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本1
|
|||
|
|
/// </summary>
|
|||
|
|
[MaxLength(6)]
|
|||
|
|
[Description("版本1")]
|
|||
|
|
Version_1 = 5,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本2
|
|||
|
|
/// </summary>
|
|||
|
|
[MaxLength(8)]
|
|||
|
|
[Description("版本2")]
|
|||
|
|
Version_2 = 4,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本3
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("版本3")]
|
|||
|
|
[MaxLength(10)]
|
|||
|
|
Version_3 = 3,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本4
|
|||
|
|
/// </summary>
|
|||
|
|
[MaxLength(15)]
|
|||
|
|
[Description("版本4")]
|
|||
|
|
Version_4 = 2,
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本5
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("版本5")]
|
|||
|
|
[MaxLength(30)]
|
|||
|
|
Version_5 = 1
|
|||
|
|
}
|
|||
|
|
}
|