对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.gk.firework.Domain.Enterprise; |
| | | import com.gk.firework.Domain.PatrolOrderInfo; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | |
| | | import java.util.List; |
| | | |
| | | @ApiModel("企业信息扩展类") |
| | | public class EnterpriseVo { |
| | | @ApiModelProperty("id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("安全监管分类") |
| | | private String safetysupervision; |
| | | |
| | | /** 单位编号 enterprisenumber **/ |
| | | @ApiModelProperty("单位编号") |
| | | private String enterprisenumber; |
| | | |
| | | @ApiModelProperty("企业名称") |
| | | private String enterprisename; |
| | | |
| | | @ApiModelProperty("单位办公地址") |
| | | private String officeaddress; |
| | | |
| | | @ApiModelProperty("办公电话") |
| | | private String officephone; |
| | | |
| | | @ApiModelProperty("治安主管单位") |
| | | private String securitysupervisory; |
| | | |
| | | @ApiModelProperty("主要负责人") |
| | | private String mainperson; |
| | | |
| | | @ApiModelProperty("安全员") |
| | | private String safety; |
| | | |
| | | @ApiModelProperty("安全巡检列表") |
| | | private List<PatrolOrderVo> patrolOrderVos; |
| | | |
| | | public String getSafety() { |
| | | return safety; |
| | | } |
| | | |
| | | public void setSafety(String safety) { |
| | | this.safety = safety; |
| | | } |
| | | |
| | | public String getMainperson() { |
| | | return mainperson; |
| | | } |
| | | |
| | | public void setMainperson(String mainperson) { |
| | | this.mainperson = mainperson; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getSafetysupervision() { |
| | | return safetysupervision; |
| | | } |
| | | |
| | | public void setSafetysupervision(String safetysupervision) { |
| | | this.safetysupervision = safetysupervision; |
| | | } |
| | | |
| | | public String getEnterprisenumber() { |
| | | return enterprisenumber; |
| | | } |
| | | |
| | | public void setEnterprisenumber(String enterprisenumber) { |
| | | this.enterprisenumber = enterprisenumber; |
| | | } |
| | | |
| | | public String getEnterprisename() { |
| | | return enterprisename; |
| | | } |
| | | |
| | | public void setEnterprisename(String enterprisename) { |
| | | this.enterprisename = enterprisename; |
| | | } |
| | | |
| | | 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 getSecuritysupervisory() { |
| | | return securitysupervisory; |
| | | } |
| | | |
| | | public void setSecuritysupervisory(String securitysupervisory) { |
| | | this.securitysupervisory = securitysupervisory; |
| | | } |
| | | |
| | | |
| | | public List<PatrolOrderVo> getPatrolOrderVos() { |
| | | return patrolOrderVos; |
| | | } |
| | | |
| | | public void setPatrolOrderVos(List<PatrolOrderVo> patrolOrderVos) { |
| | | this.patrolOrderVos = patrolOrderVos; |
| | | } |
| | | } |