using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Utility
{
    public class ImportHistData
    {
        /// 
        /// 器具名称
        /// 
        public string Name { get; set; }
        /// 
        /// 值
        /// 
        public decimal Data { get; set; }
        /// 
        /// 时间
        /// 
        public DateTime Time { get; set; }
    }
}