ComplianceServer/code/Hg.Core.Entity/Complaint/ComplaintUserDept.cs

40 lines
914 B
C#

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_dept")]
public class ComplaintUserDept
{
[Key]
public int Id { get; set; }
public int Fid { get;set; }
[Column("dept_group_id")]
public int DeptGroupId { get; set; }
[Column("last_content")]
public string? LastContent { get; set; }
[Column("last_contentid")]
public int? LastContentId { get; set; }
public DateTime? Ctime { get; set; }
public DateTime? Utime { get; set; }
public ComplaintStatus Status { get; set; }
public int? Deptid { get; set; }
[Column("crmappid")]
public string? CrmAppid { get; set; }
[Column("has_order")]
public bool HasOrder { get; set; }
}
}