You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[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; }
|
|
|
|
|
|
}
|
|
}
|