using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Result.Feedback
{
///
/// 意见反馈分页显示数据
///
public class FeedbackPageResult
{
///
/// 序列id
///
public int Id { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
///反馈类型(1 功能异常 2 体验优化)
///
public int FeedbackType { get; set; }
///
/// 反馈类容
///
public string Content { get; set; }
///
/// 用户姓名
///
public string Name { get; set; }
}
}