对比新文件 |
| | |
| | | package com.gk.firework.Domain.Vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.*; |
| | | |
| | | public class EnterpriseLicenseVo implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id id **/ |
| | | private Long id; |
| | | |
| | | /** 许可证编号 licensenumber **/ |
| | | private String licensenumber; |
| | | |
| | | /** 许可证名称 licensename **/ |
| | | private String licensename; |
| | | |
| | | /** 发证机关 authority **/ |
| | | private String authority; |
| | | |
| | | /** 许可范围 ranges **/ |
| | | private String ranges; |
| | | |
| | | /** 有效开始时间 validstarttime **/ |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | private Date validstarttime; |
| | | |
| | | /** validendtime **/ |
| | | @DateTimeFormat(pattern="yyyy-MM-dd") |
| | | private Date validendtime; |
| | | |
| | | private List<Long> imgids; |
| | | |
| | | private MultipartFile[] file; |
| | | |
| | | /** 企业信息id enterpriseid **/ |
| | | private Long enterpriseid; |
| | | |
| | | |
| | | public String getLicensenumber() { |
| | | return licensenumber; |
| | | } |
| | | |
| | | public void setLicensenumber(String licensenumber) { |
| | | this.licensenumber = licensenumber; |
| | | } |
| | | |
| | | public String getLicensename() { |
| | | return licensename; |
| | | } |
| | | |
| | | public void setLicensename(String licensename) { |
| | | this.licensename = licensename; |
| | | } |
| | | |
| | | public String getAuthority() { |
| | | return authority; |
| | | } |
| | | |
| | | public void setAuthority(String authority) { |
| | | this.authority = authority; |
| | | } |
| | | |
| | | public String getRanges() { |
| | | return ranges; |
| | | } |
| | | |
| | | public void setRanges(String ranges) { |
| | | this.ranges = ranges; |
| | | } |
| | | |
| | | public Date getValidstarttime() { |
| | | return validstarttime; |
| | | } |
| | | |
| | | public void setValidstarttime(Date validstarttime) { |
| | | this.validstarttime = validstarttime; |
| | | } |
| | | |
| | | public Date getValidendtime() { |
| | | return validendtime; |
| | | } |
| | | |
| | | public void setValidendtime(Date validendtime) { |
| | | this.validendtime = validendtime; |
| | | } |
| | | |
| | | public Long getEnterpriseid() { |
| | | return enterpriseid; |
| | | } |
| | | |
| | | public void setEnterpriseid(Long enterpriseid) { |
| | | this.enterpriseid = enterpriseid; |
| | | } |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public List<Long> getImgids() { |
| | | return imgids; |
| | | } |
| | | |
| | | public void setImgids(List<Long> imgids) { |
| | | this.imgids = imgids; |
| | | } |
| | | |
| | | public MultipartFile[] getFile() { |
| | | return file; |
| | | } |
| | | |
| | | public void setFile(MultipartFile[] file) { |
| | | this.file = file; |
| | | } |
| | | } |
| | | |