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.rt_prefix_lastcount")] public partial class rt_prefix_lastcount { [Key] [StringLength(45)] public string prefix { get; set; } public int lastcount { get; set; } } }