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_banci")] public partial class df_banci { public int ID { get; set; } [StringLength(45)] public string Name { get; set; } public TimeSpan? StartPointInTime { get; set; } public TimeSpan? EndPointInTime { get; set; } [StringLength(145)] public string StartTimeSql { get; set; } [StringLength(145)] public string EndTimeSql { get; set; } } }