You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.9 KiB
C#
85 lines
1.9 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_web_grid_column")]
|
|
[Serializable]
|
|
public class SysWebGridColumn : BaseEntity
|
|
{
|
|
[Column("column_id")]
|
|
[DisplayName(" ")]
|
|
public int ColumnId { get; set; }
|
|
|
|
[Column("menu_id")]
|
|
[DisplayName(" ")]
|
|
public int MenuId { get; set; }
|
|
|
|
[Column("grid_name")]
|
|
[DisplayName(" ")]
|
|
public string GridName { get; set; }
|
|
|
|
[Column("name")]
|
|
[DisplayName(" ")]
|
|
public string Name { get; set; }
|
|
|
|
[Column("display")]
|
|
[DisplayName(" ")]
|
|
public string Display { get; set; }
|
|
|
|
[Column("isAllowHide")]
|
|
[DisplayName(" ")]
|
|
public bool? Isallowhide { get; set; }
|
|
|
|
[Column("isSort")]
|
|
[DisplayName(" ")]
|
|
public bool? Issort { get; set; }
|
|
|
|
[Column("type")]
|
|
[DisplayName(" ")]
|
|
public string Type { get; set; }
|
|
|
|
[Column("width")]
|
|
[DisplayName(" ")]
|
|
public string Width { get; set; }
|
|
|
|
[Column("minWidth")]
|
|
[DisplayName(" ")]
|
|
public int? Minwidth { get; set; }
|
|
|
|
[Column("align")]
|
|
[DisplayName(" ")]
|
|
public string Align { get; set; }
|
|
|
|
[Column("hide")]
|
|
[DisplayName(" ")]
|
|
public bool? Hide { get; set; }
|
|
|
|
[Column("frozen")]
|
|
[DisplayName(" ")]
|
|
public bool? Frozen { get; set; }
|
|
|
|
[Column("render")]
|
|
[DisplayName(" ")]
|
|
public string Render { get; set; }
|
|
|
|
[Column("export")]
|
|
[DisplayName(" ")]
|
|
public bool? Export { get; set; }
|
|
|
|
[Column("dateFmt")]
|
|
[DisplayName(" ")]
|
|
public string Datefmt { get; set; }
|
|
|
|
[Column("index")]
|
|
[DisplayName(" ")]
|
|
public int? Index { get; set; }
|
|
|
|
|
|
}
|
|
}
|