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.
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_sn_repair")]
|
|
[Serializable]
|
|
public class GSnRepair : BaseEntity
|
|
{
|
|
[Column("serial_number")]
|
|
[DisplayName(" ")]
|
|
public string SerialNumber { get; set; }
|
|
|
|
[Column("workorder_no")]
|
|
[DisplayName(" ")]
|
|
public string WorkorderNo { get; set; }
|
|
|
|
[Column("part_id")]
|
|
[DisplayName(" ")]
|
|
public int PartId { get; set; }
|
|
|
|
[Column("repair_emp_id")]
|
|
[DisplayName(" ")]
|
|
public int RepairEmpId { get; set; }
|
|
|
|
[Column("repair_time")]
|
|
[DisplayName(" ")]
|
|
public DateTime RepairTime { get; set; }
|
|
|
|
[Column("reason_id")]
|
|
[DisplayName(" ")]
|
|
public int ReasonId { get; set; }
|
|
|
|
[Column("rp_terminal_id")]
|
|
[DisplayName(" ")]
|
|
public int RpTerminalId { get; set; }
|
|
|
|
[Column("duty_process_id")]
|
|
[DisplayName(" ")]
|
|
public int DutyProcessId { get; set; }
|
|
|
|
[Column("duty_id")]
|
|
[DisplayName(" ")]
|
|
public int DutyId { get; set; }
|
|
|
|
[Column("remark")]
|
|
[DisplayName(" ")]
|
|
public string Remark { get; set; }
|
|
|
|
[Column("location")]
|
|
[DisplayName(" ")]
|
|
public string Location { get; set; }
|
|
|
|
[Column("sn_defect_id")]
|
|
[DisplayName(" ")]
|
|
public int SnDefectId { get; set; }
|
|
|
|
[Column("ruid")]
|
|
[DisplayName(" ")]
|
|
public int Ruid { get; set; }
|
|
|
|
|
|
}
|
|
}
|