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.
Aucma.Scada/Aucma.Scada.Model/domain/WorkTime.cs

31 lines
821 B
C#

using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Scada.Model.domain
{
[SugarTable("VIEW_CURRENT_TEAM_TIME", "AUCMA_MES")]
public class WorkTime
{
/// <summary>
/// 开始时间
/// </summary>
[SugarColumn(ColumnName = "START_TIME")]
public DateTime startTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
[SugarColumn(ColumnName = "END_TIME")]
public DateTime endTime { get; set; }
[SugarColumn(ColumnName = "HOUR_TIME")]
public string hourTime { get; set; }
[SugarColumn(ColumnName = "TEAM_NAME")]
public string teamName { get; set; }
}
}