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.

45 lines
1017 B
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Models
{
/// <summary>
/// ,数据实体对象
/// </summary>
[Table("sys_shift_detail")]
[Serializable]
public class SysShiftDetail : BaseEntity
{
[Column("ruid")]
[DisplayName(" ")]
public int Ruid { get; set; }
[Column("number")]
[DisplayName("序号")]
public int Number { get; set; }
[Column("time_interval")]
[DisplayName("时间区间")]
public string TimeInterval { get; set; }
[Column("jph")]
[DisplayName(" ")]
public int Jph { get; set; }
[Column("shift_id")]
[DisplayName("班别ID")]
public int? ShiftId { get; set; }
[Column("stage_id")]
[DisplayName(" ")]
public int? StageId { get; set; }
[Column("ex_flag")]
[DisplayName(" ")]
public int? ExFlag { get; set; }
}
}