72 lines
1.6 KiB
C#
72 lines
1.6 KiB
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_log")]
|
|
public class ComplaintLog
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public string? Appid { get; set; }
|
|
|
|
public string? Appuserid { get; set; }
|
|
|
|
public string? Kfuserid { get; set; }
|
|
|
|
public string? Resid { get; set; }
|
|
|
|
public string? Unionid { get; set; }
|
|
|
|
public DateTime? Ctime { get; set; }
|
|
|
|
public DateTime? Utime { get; set; }
|
|
|
|
public int? Deptid { get; set; }
|
|
|
|
[Column("crmappid")]
|
|
public string? CrmAppid { get; set; }
|
|
|
|
public string? Type { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public int? Contentid { get; set; }
|
|
|
|
public int? Fid { get; set; }
|
|
|
|
public ComplaintSource? Source { get; set; }
|
|
|
|
[Column("completion_time")]
|
|
public DateTime? CompletionTime { get; set; }
|
|
|
|
[Column("is_completion")]
|
|
public bool? IsCompletion { get; set; }
|
|
|
|
[Column("is_last")]
|
|
public bool IsLast { get; set; }
|
|
|
|
[Column("sign_type")]
|
|
public ComplaintSignType? SignType { get; set; }
|
|
|
|
[Column("sign_way")]
|
|
public ComplaintSignWay? SignWay { get; set; }
|
|
|
|
public int? Udid { get; set; }
|
|
|
|
public int? Channel { get; set; }
|
|
|
|
public int? Eid { get; set; }
|
|
|
|
public string? Ename { get; set; }
|
|
|
|
/// <summary>
|
|
/// 水军类型
|
|
/// </summary>
|
|
public ComplaintSignReason? Reason { get; set; }
|
|
}
|
|
} |