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.
38 lines
947 B
C#
38 lines
947 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
///安灯信息查询
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AndonInfoQuery
|
|
{
|
|
[Column("station_name")]
|
|
[DisplayName("工位")]
|
|
public string StationName { get; set; }
|
|
|
|
[Column("pdline_name")]
|
|
[DisplayName("生产线")]
|
|
public string PdlineName { get; set; }
|
|
|
|
[Column("enum_desc")]
|
|
[DisplayName("类型描述")]
|
|
public string EnumDesc { get; set; }
|
|
|
|
[Column("start_time")]
|
|
[DisplayName("开始时间")]
|
|
public string StartTime { get; set; }
|
|
|
|
[Column("end_time")]
|
|
[DisplayName("结束时间")]
|
|
public string EndTime { get; set; }
|
|
|
|
[Column("sj")]
|
|
[DisplayName("时间(秒)")]
|
|
public string Sj { get; set; }
|
|
}
|
|
}
|