//------------------------------------------------------------------------------ // <auto-generated> // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// <summary> /// Sys_ControlItem /// </summary> public partial class Sys_ControlItem { public Sys_ControlItem() { this.Sys_ControlItemDetail = new HashSet<Sys_ControlItemDetail>(); } /// <summary> /// ControlItemCode /// </summary> public string ControlItemCode { get; set; } /// <summary> /// ControlItemTypeID /// </summary> public Nullable<int> ControlItemTypeID { get; set; } /// <summary> /// Name /// </summary> public string Name { get; set; } /// <summary> /// ClassName /// </summary> public string ClassName { get; set; } /// <summary> /// Message /// </summary> public string Message { get; set; } /// <summary> /// IsLoginControl /// </summary> public Nullable<bool> IsLoginControl { get; set; } /// <summary> /// IsEnable /// </summary> public Nullable<bool> IsEnable { get; set; } /// <summary> /// Sys_ControlItemDetail /// </summary> public virtual HashSet<Sys_ControlItemDetail> Sys_ControlItemDetail { get; set; } } }