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
76
77
78
79
80
81
82
83
84
85
86
package com.gk.firework.Domain.Vo;
 
import com.gk.firework.Domain.WarnContentInfo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel("预警内容扩招类")
public class WarnContentVo extends WarnContentInfo {
 
    @ApiModelProperty("购买人身份证")
    private String idcard;
 
    @ApiModelProperty("购买人姓名")
    private String purchasename;
 
    @ApiModelProperty("购买人住址")
    private String purchaseaddress;
 
    @ApiModelProperty("企业类型")
    private String enterprisetype;
 
    @ApiModelProperty("企业名称")
    private String enterprisename;
 
    @ApiModelProperty("企业编号")
    private String enterprisenumber;
 
    @ApiModelProperty("办公地址")
    private String officeaddress;
 
    public String getIdcard() {
        return idcard;
    }
 
    public void setIdcard(String idcard) {
        this.idcard = idcard;
    }
 
    public String getPurchasename() {
        return purchasename;
    }
 
    public void setPurchasename(String purchasename) {
        this.purchasename = purchasename;
    }
 
    public String getPurchaseaddress() {
        return purchaseaddress;
    }
 
    public void setPurchaseaddress(String purchaseaddress) {
        this.purchaseaddress = purchaseaddress;
    }
 
    public String getEnterprisetype() {
        return enterprisetype;
    }
 
    public void setEnterprisetype(String enterprisetype) {
        this.enterprisetype = enterprisetype;
    }
 
    public String getEnterprisename() {
        return enterprisename;
    }
 
    public void setEnterprisename(String enterprisename) {
        this.enterprisename = enterprisename;
    }
 
    public String getEnterprisenumber() {
        return enterprisenumber;
    }
 
    public void setEnterprisenumber(String enterprisenumber) {
        this.enterprisenumber = enterprisenumber;
    }
 
    public String getOfficeaddress() {
        return officeaddress;
    }
 
    public void setOfficeaddress(String officeaddress) {
        this.officeaddress = officeaddress;
    }
}