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_config_data")] public partial class df_config_data { [Key] [Column(Order = 0)] [StringLength(100)] public string DATAID { get; set; } [Key] [Column(Order = 1)] [StringLength(40)] public string ENGDISPLAYNAME { get; set; } [StringLength(40)] public string LOCALDISPLAYNAME { get; set; } [Required] [StringLength(3)] public string SEQUENCE { get; set; } [StringLength(50)] public string FORMULA { get; set; } [Required] [StringLength(64)] public string COLLUMNTYPE { get; set; } [StringLength(255)] public string REMARK { get; set; } } }