using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { [Table("Hg_Violation")] /// /// 违规记录表 /// public class Hg_Violation { [Key] public int id { get; set; } public int hgid { get; set; } public int pkid { get; set; } public string msgid { get; set; } public string msgtype { get; set; } public string action { get; set; } public string fromer { get; set; } public string kefuname { get; set; } public string touser { get; set; } public string cusname { get; set; } public string corpid { get; set; } public DateTime hgtime { get; set; } public string word { get; set; } public string voiceUrl { get; set; } public string content { get; set; } public int eid { get; set; } public string uname { get; set; } public string detpcode { get; set; } public string hgtype { get; set; } public string hgsubtype { get; set; } public string hgdetail { get; set; } public string hgresult { get; set; } public string type { get; set; } public string resid { get; set; } } }