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.
30 lines
687 B
C#
30 lines
687 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 条码绑定扫描类型统计
|
|
/// </summary>
|
|
[SugarTable("VIEW_TEAM_MAX_MIN_TIME", "AUCMA_MES")]
|
|
public class TwoTime
|
|
{
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "START_TIME")]
|
|
public DateTime startTime { get; set; }
|
|
/// <summary>
|
|
/// 结束时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "END_TIME")]
|
|
public DateTime endTime { get; set; }
|
|
|
|
|
|
}
|
|
}
|