对比新文件 |
| | |
| | | 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; |
| | | } |
| | | } |