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;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml.Linq;
|
|
|
|
|
|
|
|
|
|
namespace Aucma.Scada.Api.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 电检数据记录
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("RECORD_ELECTRICALINSPECTION"), TenantAttribute("scada")]
|
|
|
|
|
[DataContract(Name = "RecordElectricalinspection 电检数据记录")]
|
|
|
|
|
public class RecordElectricalinspection
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 唯一标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "UUID")]
|
|
|
|
|
public string Uuid { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试总结果
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "RESULT")]
|
|
|
|
|
public string Result { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品条码
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "BARCODE")]
|
|
|
|
|
public string Barcode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TESTTIME")]
|
|
|
|
|
public string Testtime { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 测试数据
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "TESTDATA")]
|
|
|
|
|
public string Testdata { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 记录时间
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "RECORDTIME")]
|
|
|
|
|
public DateTime? Recordtime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|