using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HighWayIot.Repository.domain { /// /// 班次时间表 /// [SugarTable("sys_shift_time")] public class SysShiftTimeEntity { /// /// 备 注: 班次ID /// 默认值: /// [SugarColumn(ColumnName = "shift_id", IsPrimaryKey = true)] public string ShiftId { get; set; } /// /// 备 注:班次名称 /// 默认值: /// [SugarColumn(ColumnName = "shift_name")] public string ShiftName { get; set; } = null; /// /// 备 注:班次开始时间 /// 默认值: /// [SugarColumn(ColumnName = "shift_st")] public string ShiftStartTime { get; set; } = null; /// /// 备 注:班次结束时间 /// 默认值: /// [SugarColumn(ColumnName = "shift_et")] public string ShiftEndTime { get; set; } = null; /// /// 备 注:班次类型 /// 默认值: /// [SugarColumn(ColumnName = "shift_class")] public string ShiftClass { get; set; } = null; } }