37 lines
845 B
C#
37 lines
845 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("t_in_complaint_restore")]
|
|
public class InComplaintRestore
|
|
{
|
|
[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; }
|
|
}
|
|
}
|