Administrator
2023-06-19 49588f5a462ae7425e7eb030438a35fd80c246fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.gk.firework.Domain.Vo;
 
import com.gk.firework.Domain.PatrolOrderInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel("安全巡检列表扩展类")
public class PatrolOrderVo extends PatrolOrderInfo {
 
    @ApiModelProperty("检查人")
    private String checkname;
 
    @ApiModelProperty("企业名称")
    private String enterprisename;
 
    @ApiModelProperty("企业类型")
    private String safetysupervision;
 
    @ApiModelProperty("办公地址")
    private String officeaddress;
 
    @ApiModelProperty("办公电话")
    private String officephone;
 
    @ApiModelProperty("主要负责人")
    private String mainperson;
 
    public String getCheckname() {
        return checkname;
    }
 
    public void setCheckname(String checkname) {
        this.checkname = checkname;
    }
 
    public String getEnterprisename() {
        return enterprisename;
    }
 
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename;
    }
 
    public String getSafetysupervision() {
        return safetysupervision;
    }
 
    public void setSafetysupervision(String safetysupervision) {
        this.safetysupervision = safetysupervision;
    }
 
    public String getOfficeaddress() {
        return officeaddress;
    }
 
    public void setOfficeaddress(String officeaddress) {
        this.officeaddress = officeaddress;
    }
 
    public String getOfficephone() {
        return officephone;
    }
 
    public void setOfficephone(String officephone) {
        this.officephone = officephone;
    }
 
    public String getMainperson() {
        return mainperson;
    }
 
    public void setMainperson(String mainperson) {
        this.mainperson = mainperson;
    }
}