using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [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; } } }