using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [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; } } }