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.
77 lines
1.8 KiB
C#
77 lines
1.8 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_andon")]
|
|
[Serializable]
|
|
public class GAndon : BaseEntity
|
|
{
|
|
[Column("factory_id")]
|
|
[DisplayName(" ")]
|
|
public int FactoryId { get; set; }
|
|
|
|
[Column("pdline_id")]
|
|
[DisplayName(" ")]
|
|
public int PdlineId { get; set; }
|
|
|
|
[Column("station_no")]
|
|
[DisplayName(" ")]
|
|
public int StationNo { get; set; }
|
|
|
|
[Column("station_name")]
|
|
[DisplayName(" ")]
|
|
public string StationName { get; set; }
|
|
|
|
[Column("station_name_en")]
|
|
[DisplayName(" ")]
|
|
public string StationNameEn { get; set; }
|
|
|
|
[Column("andon_type")]
|
|
[DisplayName(" ")]
|
|
public int AndonType { get; set; }
|
|
|
|
[Column("opc_tag_name")]
|
|
[DisplayName(" ")]
|
|
public string OpcTagName { get; set; }
|
|
|
|
[Column("default_value")]
|
|
[DisplayName(" ")]
|
|
public int DefaultValue { get; set; }
|
|
|
|
[Column("status_flag")]
|
|
[DisplayName(" ")]
|
|
public int StatusFlag { get; set; }
|
|
|
|
[Column("counter")]
|
|
[DisplayName(" ")]
|
|
public int Counter { get; set; }
|
|
|
|
[Column("stage_name")]
|
|
[DisplayName(" ")]
|
|
public string StageName { get; set; }
|
|
|
|
[Column("stage_id")]
|
|
[DisplayName(" ")]
|
|
public int? StageId { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("start_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
[Column("end_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
|
|
}
|
|
}
|