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

37 lines
847 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_restore")]
public class OutComplaintRestore
{
[Key]
public int Id { get; set; }
[Column("complaint_id")]
public string? ComplaintId { get; set; }
[Column("content")]
public string? Content { get; set; }
[Column("creator")]
public string? Creator { get; set; }
[Column("create_time")]
public DateTime? CreateTime { get; set; }
[Column("creator_eid")]
public int? CreatorEid { get; set; }
[Column("attachment")]
public string? Attachment { get; set; }
[Column("restore_type")]
public RestoreType? RestoreType { get; set; }
}
}