26 lines
465 B
C#
26 lines
465 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.Utility
|
|||
|
|
{
|
|||
|
|
public class ImportHistData
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 器具名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 值
|
|||
|
|
/// </summary>
|
|||
|
|
public decimal Data { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 时间
|
|||
|
|
/// </summary>
|
|||
|
|
public DateTime Time { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|