38 lines
871 B
C#
38 lines
871 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_follow_up")]
|
|
public class InComplaintFollowUp
|
|
{
|
|
[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; }
|
|
|
|
}
|
|
}
|