1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using System.ComponentModel.DataAnnotations;
|
| namespace FineAdmin.Common
| {
| /// <summary>
| /// 显示位置枚举
| /// </summary>
| public enum PositionEnum
| {
| /// <summary>
| /// 表内
| /// </summary>
| [Display(Name = "表内")]
| FormInside = 0,
| /// <summary>
| /// 表外
| /// </summary>
| [Display(Name = "表外")]
| FormRightTop = 1
| }
| }
|
|