招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

37 lines
842 B

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 意见反馈表
/// </summary>
[Table("rm_feedback")]
[Serializable]
public class FeedbackEntity : BaseEntity
{
public long UserId { get; set; }
/// <summary>
/// 反馈内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 状态 0未处理/1已处理
/// </summary>
public int Status { get; set; }
/// <summary>
/// 处理结果
/// </summary>
public string Result { get; set; }
/// <summary>
/// 备注
/// </summary>
public string Note { get; set; }
}
}