package com.kym.entity.admin.queryParams; import com.kym.entity.common.PageParams; import lombok.Data; import java.time.LocalDateTime; @Data public class FeedbackQueryParam extends PageParams { /** * 反馈标题 */ private String title; /** * 纠错类型 */ private Integer type; /** * 状态 */ private Integer status; /** * 详情描述 */ private String content; /** * 提交时间 */ private LocalDateTime submitTime; /** * 反馈人 */ private Long submitUserId; /** * 回复内容 */ private String replyContent; /** * 回复时间 */ private LocalDateTime replyTime; /** * 回复人 */ private Long replyUserId; }