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.
93 lines
2.2 KiB
C#
93 lines
2.2 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_ht_dps")]
|
|
[Serializable]
|
|
public class GHtDps : BaseEntity
|
|
{
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
[Column("task_ruid")]
|
|
[DisplayName(" ")]
|
|
public int? TaskRuid { get; set; }
|
|
|
|
[Column("pdline_id")]
|
|
[DisplayName(" ")]
|
|
public int PdlineId { get; set; }
|
|
|
|
[Column("terminal_id")]
|
|
[DisplayName(" ")]
|
|
public int? TerminalId { get; set; }
|
|
|
|
[Column("workorder_id")]
|
|
[DisplayName(" ")]
|
|
public int? WorkorderId { get; set; }
|
|
|
|
[Column("view_board_id")]
|
|
[DisplayName(" ")]
|
|
public int? ViewBoardId { get; set; }
|
|
|
|
[Column("type_id")]
|
|
[DisplayName(" ")]
|
|
public int? TypeId { get; set; }
|
|
|
|
[Column("model_id")]
|
|
[DisplayName(" ")]
|
|
public int? ModelId { get; set; }
|
|
|
|
[Column("part_id")]
|
|
[DisplayName(" ")]
|
|
public int? PartId { get; set; }
|
|
|
|
[Column("item_part_id")]
|
|
[DisplayName(" ")]
|
|
public int? ItemPartId { get; set; }
|
|
|
|
[Column("car_no")]
|
|
[DisplayName(" ")]
|
|
public string CarNo { get; set; }
|
|
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("tray_no")]
|
|
[DisplayName(" ")]
|
|
public string TrayNo { get; set; }
|
|
|
|
[Column("tray_loc")]
|
|
[DisplayName(" ")]
|
|
public string TrayLoc { get; set; }
|
|
|
|
[Column("part_location")]
|
|
[DisplayName(" ")]
|
|
public string PartLocation { get; set; }
|
|
|
|
[Column("is_finish")]
|
|
[DisplayName(" ")]
|
|
public string IsFinish { get; set; }
|
|
|
|
[Column("is_repeat")]
|
|
[DisplayName(" ")]
|
|
public string IsRepeat { get; set; }
|
|
|
|
[Column("task_type")]
|
|
[DisplayName(" ")]
|
|
public string TaskType { get; set; }
|
|
|
|
[Column("remark")]
|
|
[DisplayName(" ")]
|
|
public string Remark { get; set; }
|
|
|
|
|
|
}
|
|
}
|