| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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;
- }
|