using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
///
/// 通话评价表
///
[Table("rm_call_feedback")]
public class CallFeedbackEntity : BaseEntity
{
///
/// UserId
///
public long UserId { get; set; }
///
/// 产品Id
///
public long ProductId { get; set; }
///
/// 状态
///
public int Status { get; set; }
///
/// 产品类型
///
public int ProductType { get; set; }
///
/// 是否已读
///
public bool IsRead { get; set; }
}
}