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.
33 lines
828 B
C#
33 lines
828 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Aucma.Scada.UI.Model
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[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; }
|
|
|
|
}
|
|
}
|