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_StatInfo
|
{
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
public Sys_StatInfo()
|
{
|
Sys_StatCrossAxis = new HashSet<Sys_StatCrossAxis>();
|
Sys_StatOrdinateAxis = new HashSet<Sys_StatOrdinateAxis>();
|
Sys_StatWhere = new HashSet<Sys_StatWhere>();
|
}
|
|
[Key]
|
public int StatInfo_Id { get; set; }
|
|
public int ParentId { get; set; }
|
|
[StringLength(50)]
|
public string StatInfoName { get; set; }
|
|
[StringLength(300)]
|
public string StatInfoFullName { get; set; }
|
|
[StringLength(50)]
|
public string CubeName { get; set; }
|
|
[StringLength(50)]
|
public string StatInfoView { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
public byte? TemplateType { get; set; }
|
|
[StringLength(500)]
|
public string TemplatePath { get; set; }
|
|
[StringLength(500)]
|
public string SavePath { get; set; }
|
|
[StringLength(50)]
|
public string Namespace { get; set; }
|
|
[StringLength(50)]
|
public string FolderName { get; set; }
|
|
public byte? CrossAxisTuple { get; set; }
|
|
public int? CrossAxisHiddenRowCount { get; set; }
|
|
public string WithData { get; set; }
|
|
public byte? IsDisplaySum { get; set; }
|
|
public byte? Enable { get; set; }
|
|
[StringLength(500)]
|
public string Remark { 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 string ExpandFields { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<Sys_StatCrossAxis> Sys_StatCrossAxis { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<Sys_StatOrdinateAxis> Sys_StatOrdinateAxis { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
public virtual ICollection<Sys_StatWhere> Sys_StatWhere { get; set; }
|
}
|
}
|