package com.panzhihua.sangeshenbian.model.query;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @author mitao
|
* @date 2025/2/23
|
*/
|
@Data
|
@ApiModel("工单查询数据传输对象")
|
public class ComplaintQuery extends BasePage{
|
@ApiModelProperty("1:上报待审核,2:正在办理, 3:办结, 不传为全部")
|
private Integer type;
|
|
@ApiModelProperty(value = "当前页数", example = "1")
|
private Long pageNum = 1L;
|
|
@ApiModelProperty(value = "每页记录数", example = "10")
|
private Long pageSize = 10L;
|
}
|