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_StatCrossAxis
|
{
|
[Key]
|
public int StatCrossAxis_Id { get; set; }
|
|
public int StatInfo_Id { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
[StringLength(50)]
|
public string FieldCaption { get; set; }
|
|
[StringLength(300)]
|
public string UniqueName { get; set; }
|
|
public int? ColumnWidth { get; set; }
|
|
[StringLength(50)]
|
public string DataType { get; set; }
|
|
public string OnEvent { get; set; }
|
|
[StringLength(50)]
|
public string Formatter { get; set; }
|
|
public byte? IsHidden { get; set; }
|
|
public byte? Enable { 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; }
|
|
[StringLength(50)]
|
public string DeleteBy { get; set; }
|
|
public string ExpandFields { get; set; }
|
|
public virtual Sys_StatInfo Sys_StatInfo { get; set; }
|
}
|
}
|