ComplianceServer/code/Hg.Core.Entity/OutComplaintFollowUp.cs

38 lines
873 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("t_out_complaint_follow_up")]
public class OutComplaintFollowUp
{
[Key]
public int Id { get; set; }
[Column("complaint_id")]
public string? ComplaintId { get; set; }
public string? Content { get; set; }
public string? Follow { get; set; }
public string? Creator { get; set; }
[Column("create_time")]
public DateTime? CreateTime { get; set; }
[Column("create_eid")]
public int? CreateEid { get; set; }
public string? Updater { get; set; }
[Column("update_time")]
public DateTime? UpdateTime { get; set; }
[Column("update_eid")]
public int? UpdateEid { get; set; }
}
}