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