Pu Zhibing
2025-02-27 f0a9a41697a8568e8b3bd3436c450e68b3298916
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/model/query/ComplaintQuery.java
@@ -11,12 +11,13 @@
@Data
@ApiModel("工单查询数据传输对象")
public class ComplaintQuery extends BasePage{
    @ApiModelProperty("1:上报待审核,2:正在办理, 3:办结, 不传为全部")
    @ApiModelProperty("全部:不传,上报待审核:0,正在办理:1, 办结:2")
    private Integer type;
    @ApiModelProperty(value = "当前页数", example = "1")
    private Long pageNum = 1L;
    /**
     * 当前登录用户id
     */
    private Long userId;
    @ApiModelProperty(value = "每页记录数", example = "10")
    private Long pageSize = 10L;
}