using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Entity.Complaint { [Table("hg_complaint_user")] public class ComplaintUser { [Key] public int Id { get; set; } public string? Appid { get; set; } public string? Appuserid { get; set; } public string? Resid { get; set; } public string? Unionid { get; set; } public DateTime? Ctime { get; set; } public DateTime? Utime { get; set; } [Column("last_type")] public string? LastType { get; set; } public string? Uname { get; set; } public int? Eid { get; set; } public string? Ename { get; set; } } }