using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_helpdesk")] [Serializable] public class GHelpdesk : BaseEntity { [Column("incident_id")] [DisplayName(" ")] public string IncidentId { get; set; } [Column("create_date")] [DisplayName(" ")] public string CreateDate { get; set; } [Column("site")] [DisplayName(" ")] public string Site { get; set; } [Column("requester")] [DisplayName(" ")] public string Requester { get; set; } [Column("issue_desc")] [DisplayName(" ")] public string IssueDesc { get; set; } [Column("type")] [DisplayName(" ")] public string Type { get; set; } [Column("priority")] [DisplayName(" ")] public string Priority { get; set; } [Column("system_type")] [DisplayName(" ")] public string SystemType { get; set; } [Column("assigned_to")] [DisplayName(" ")] public string AssignedTo { get; set; } [Column("reassigned_to")] [DisplayName(" ")] public string ReassignedTo { get; set; } [Column("response_date")] [DisplayName(" ")] public string ResponseDate { get; set; } [Column("solution")] [DisplayName(" ")] public string Solution { get; set; } [Column("resolved_time")] [DisplayName(" ")] public string ResolvedTime { get; set; } [Column("dept")] [DisplayName(" ")] public string Dept { get; set; } [Column("target_date")] [DisplayName(" ")] public string TargetDate { get; set; } [Column("status")] [DisplayName(" ")] public string Status { get; set; } [Column("remark")] [DisplayName(" ")] public string Remark { get; set; } [Column("root_cause")] [DisplayName(" ")] public string RootCause { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }