namespace Warehouse.Models.mesMysqlModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("js_mes.df_controlbasic")] public partial class df_controlbasic { [Key] public int ControlID { get; set; } public int? FunctionID { get; set; } [StringLength(45)] public string ControlName { get; set; } [StringLength(45)] public string ControlType { get; set; } [StringLength(1)] public string DefaultEnable { get; set; } [StringLength(1)] public string DefaultVisible { get; set; } [StringLength(145)] public string Remark { get; set; } [StringLength(1)] public string State { get; set; } } }