SZH
2023-02-24 24fa7cc98e04dd04d0a3ca1af6f40a2c05025279
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gkhy.safePlatform.incidentManage.query;
 
public class AccidentReportQuery {
 
    private Integer status;
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
}