d_sms_service/APT.Utility/ImportTempData.cs

20 lines
450 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Utility
{
public class ImportTempData
{
//生产单元名称
public string Name { get; set; }
//数量
public string QTY { get; set; }
//日期
public string START_TIME { get; set; }
public string END_TIME { get; set; }
//生产单元ID
public Guid METER_NODE_ID { get; set; }
}
}