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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Scada.Api.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电检数据明细
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("DETAIL_ELECTRICALINSPECTION"), TenantAttribute("scada")]
|
|
|
|
|
[DataContract(Name = "DetailElectricalinspection 电检数据明细")]
|
|
|
|
|
public class DetailElectricalinspection
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "UUID")]
|
|
|
|
|
public string Uuid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 序号
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "SERIALNUMBER")]
|
|
|
|
|
public decimal? Serialnumber { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 项目名称
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PROJECTNAME")]
|
|
|
|
|
public string Projectname { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试条件
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TESTCONDITION")]
|
|
|
|
|
public string Testcondition { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试值
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TESTVALUE")]
|
|
|
|
|
public string Testvalue { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试结果
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TESTRESULT")]
|
|
|
|
|
public string Testresult { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "RECORDTIME")]
|
|
|
|
|
public DateTime? Recordtime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|