无关风月
2025-07-12 581a4811fb62fcfef4e6a19cc67e095a167f139d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "意见反馈分页列表query")
public class FeedbackQuery extends BasePage {
 
    @ApiModelProperty(value = "反馈内容")
    private String feedbackContent;
 
 
 
}