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