fix
songhuangfeng123
2022-07-27 332ded083f780cbd06653812bfe5af75b52112da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.gkhy.safePlatform.incidentManage.query.db;
 
public class AccidentReportDBQuery {
 
    private Boolean status;
 
    public Boolean getStatus() {
        return status;
    }
 
    public void setStatus(Boolean status) {
        this.status = status;
    }
}