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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 存储当班班组
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("BOX_CURRENTTEAMTIME", "AUCMA_SCADA")]
|
|
|
|
|
public class CurrentTeamTime
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int Obj_Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 班组名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TEAMNAME")]
|
|
|
|
|
public string TeamName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 开始时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "STARTTIME")]
|
|
|
|
|
public DateTime StartTime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 结束时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ENDTIME")]
|
|
|
|
|
public DateTime EndTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|