using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_stop_line_working_hours")] [Serializable] public class GStopLineWorkingHours : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("section_name")] [DisplayName(" ")] public string SectionName { get; set; } [Column("stop_line_working_hours_name")] [DisplayName(" ")] public string StopLineWorkingHoursName { get; set; } [Column("shift_id")] [DisplayName(" ")] public int? ShiftId { get; set; } [Column("pdline_id")] [DisplayName(" ")] public int? PdlineId { get; set; } [Column("stop_line_length")] [DisplayName(" ")] public int? StopLineLength { get; set; } [Column("start_time")] [DisplayName(" ")] public string StartTime { get; set; } [Column("stop_time")] [DisplayName(" ")] public string StopTime { get; set; } [Column("day_qty")] [DisplayName(" ")] public int? DayQty { get; set; } [Column("hour")] [DisplayName(" ")] public int? Hour { get; set; } } }