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.

30 lines
613 B

using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
/// <summary>
/// 意见反馈表
/// </summary>
[Table(Name = "rm_call_feedback")]
public class CallFeedbackEntity : EntityBase
{
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; }
}
}