无关风月
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 ProblemEscalationQuery extends BasePage {
 
    @ApiModelProperty(value = "问题上报内容")
    private String escalationContent;
 
 
 
}