using System; using System.Collections.Generic; using System.Text; using GxPress.Common.Page; namespace GxPress.Request.Feedback { /// /// 意见反馈分页查询 /// public class FeedbackPageRequest : PageParameter { /// /// 用户ID /// public int UserId { get; set; } /// /// 反馈类型(1 功能异常 2 体验优化) /// /// public int FeedbackType { get; set; } /// /// 开始时间 /// /// public string BeginTime { get; set; } /// /// 结束时间 /// /// public string EndTime { get; set; } /// /// 搜索 /// /// public string KeyWord { get; set; } } }