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

37 lines
796 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_follow")]
public class ComplaintUserFollow
{
[Key]
public int Id { get; set; }
public int? Fid { get; set; }
public string? Content { get; set; }
public DateTime? Ctime { get; set; }
public int? Eid { get; set; }
public string? Ename { get; set; }
public int? Udid { get; set; }
[Column("is_last")]
public bool IsLast { get; set; }
public string? Title { get; set; }
[Column("last_contentid")]
public int? LastContentId { get; set; }
public string? Crmappid { get; set; }
}
}