AUCMA_SCADA/Aucma.Core.SheetMetal/Models/StatisticModel.cs

21 lines
439 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.SheetMetal.Models
{
public class StatisticModel
{
/// <summary>
/// 开始时间
/// </summary>
public string? BeginTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public string? EndTime { get; set; }
}
}