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.
51 lines
1001 B
C#
51 lines
1001 B
C#
using Estsh.Core.Base;
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Common.Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[Serializable]
|
|
public class GridColumn
|
|
{
|
|
public int ColumnId { get; set; }
|
|
|
|
public int MenuId { get; set; }
|
|
|
|
public string GridName { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Display { get; set; }
|
|
|
|
public bool? Isallowhide { get; set; }
|
|
|
|
public bool? Issort { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Width { get; set; }
|
|
|
|
public int? Minwidth { get; set; }
|
|
|
|
public string Align { get; set; }
|
|
|
|
public bool? Hide { get; set; }
|
|
|
|
public bool? Frozen { get; set; }
|
|
|
|
public string Render { get; set; }
|
|
|
|
public bool? Export { get; set; }
|
|
|
|
public string Datefmt { get; set; }
|
|
|
|
public int? Index { get; set; }
|
|
|
|
|
|
}
|
|
}
|