namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Sys_MvcTableColumn
|
{
|
[Key]
|
public int ColumnID { get; set; }
|
|
public int? Table_Id { get; set; }
|
|
[StringLength(100)]
|
public string TableView { get; set; }
|
|
[StringLength(255)]
|
public string ColumnComment { get; set; }
|
|
[StringLength(255)]
|
public string ColumnEnComment { get; set; }
|
|
[StringLength(100)]
|
public string ColumnName { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
public int? GridOrderNo { get; set; }
|
|
public int? DropDown_Id { get; set; }
|
|
public byte? IsManagerDataSet { get; set; }
|
|
public byte? IsManagerTable { get; set; }
|
|
public string FieldAttribute { get; set; }
|
|
public int? ColumnWidth { get; set; }
|
|
[StringLength(50)]
|
public string Align { get; set; }
|
|
public byte Sortable { get; set; }
|
|
public byte Resizable { get; set; }
|
|
public int Rowspan { get; set; }
|
|
public int Colspan { get; set; }
|
|
public string DataTableOnRefresh { get; set; }
|
|
public byte? IsReadDataset { get; set; }
|
|
public int? SearchRowNo { get; set; }
|
|
public byte? IsSearchColumn { get; set; }
|
|
public byte? Nullable { get; set; }
|
|
public byte? SearchType { get; set; }
|
|
public byte? IsEditDataSet { get; set; }
|
|
public int? EditRowNo { get; set; }
|
|
[StringLength(500)]
|
public string EditNameAttribute { get; set; }
|
|
[StringLength(500)]
|
public string EditValueAttribute { get; set; }
|
|
[StringLength(4000)]
|
public string EditType { get; set; }
|
|
[StringLength(2000)]
|
public string ColumnCheck { get; set; }
|
|
[StringLength(2000)]
|
public string ColumnWarning { get; set; }
|
|
[StringLength(200)]
|
public string ColumnHelp { get; set; }
|
|
[StringLength(500)]
|
public string DefaultValue { get; set; }
|
|
public byte? IsEnableView { get; set; }
|
|
public byte? IsViewDataSet { get; set; }
|
|
public byte? ViewRowNo { get; set; }
|
|
public byte? ViewType { get; set; }
|
|
[StringLength(500)]
|
public string ViewNameAttribute { get; set; }
|
|
[StringLength(500)]
|
public string ViewValueAttribute { get; set; }
|
|
public byte? IsBatchReplace { get; set; }
|
|
public byte? IsReadTable { get; set; }
|
|
public byte? IsSum { get; set; }
|
|
[StringLength(50)]
|
public string DataType { get; set; }
|
|
public int? DataTypeLength { get; set; }
|
|
[StringLength(50)]
|
public string Formatter { get; set; }
|
|
public string EditOnRefresh { get; set; }
|
|
public string ViewOnRefresh { get; set; }
|
|
public string OnScript { get; set; }
|
|
public string ColumnAuth { get; set; }
|
|
[StringLength(50)]
|
public string GroupBy { get; set; }
|
|
public int? Group_Id { get; set; }
|
|
public string ColumnAlias { get; set; }
|
|
[StringLength(4000)]
|
public string RelationTable { get; set; }
|
|
public int? PrintOrderNo { get; set; }
|
|
public int? PrintWidth { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public byte? IsMobileListDataSet { get; set; }
|
|
public int? MobileListRowNo { get; set; }
|
|
public byte? IsMobileEditDataSet { get; set; }
|
|
public int? MobileEditRowNo { get; set; }
|
|
public byte? IsMobileViewDataSet { get; set; }
|
|
public int? MobileViewRowNo { get; set; }
|
|
public string MobileOnRefresh { get; set; }
|
|
public string MobileEditOnRefresh { get; set; }
|
|
public string MobileViewOnRefresh { get; set; }
|
|
[StringLength(4000)]
|
public string SearchEditType { get; set; }
|
|
public string ExpandFields { get; set; }
|
|
public virtual Sys_MvcTableInfo Sys_MvcTableInfo { get; set; }
|
}
|
}
|