对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | @TableName("enterpriselicense") |
| | | public class EnterpriseLicense implements Serializable { |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 主键id id **/ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 许可证编号 licensenumber **/ |
| | | private String licensenumber; |
| | | |
| | | /** 许可证名称 licensename **/ |
| | | private String licensename; |
| | | |
| | | /** 发证机关 authority **/ |
| | | private String authority; |
| | | |
| | | /** 许可范围 range **/ |
| | | private String ranges; |
| | | |
| | | /** 有效开始时间 validstarttime **/ |
| | | @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd") |
| | | private Date validstarttime; |
| | | |
| | | /** validendtime **/ |
| | | @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd") |
| | | private Date validendtime; |
| | | |
| | | /** 图片地址 **/ |
| | | private String imgurl; |
| | | |
| | | /** 企业信息id enterpriseid **/ |
| | | private Long enterpriseid; |
| | | |
| | | /** 创建人id createby **/ |
| | | private Long createby; |
| | | |
| | | /** 创建人name createbyname **/ |
| | | private String createbyname; |
| | | |
| | | /** 更新人id updateby **/ |
| | | private Long updateby; |
| | | |
| | | /** 更新人name updatebyname **/ |
| | | private String updatebyname; |
| | | |
| | | /** 有效标识 validflag **/ |
| | | private Boolean validflag; |
| | | |
| | | private Date updatetime; |
| | | |
| | | private Date createtime; |
| | | |
| | | private List<EnterpriseResource> enterpriseResources; |
| | | |
| | | /** 主键id id **/ |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | /** 主键id id **/ |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | /** 许可证编号 licensenumber **/ |
| | | public String getLicensenumber() { |
| | | return licensenumber; |
| | | } |
| | | |
| | | /** 许可证编号 licensenumber **/ |
| | | public void setLicensenumber(String licensenumber) { |
| | | this.licensenumber = licensenumber == null ? null : licensenumber.trim(); |
| | | } |
| | | |
| | | /** 许可证名称 licensename **/ |
| | | public String getLicensename() { |
| | | return licensename; |
| | | } |
| | | |
| | | /** 许可证名称 licensename **/ |
| | | public void setLicensename(String licensename) { |
| | | this.licensename = licensename == null ? null : licensename.trim(); |
| | | } |
| | | |
| | | /** 发证机关 authority **/ |
| | | public String getAuthority() { |
| | | return authority; |
| | | } |
| | | |
| | | /** 发证机关 authority **/ |
| | | public void setAuthority(String authority) { |
| | | this.authority = authority == null ? null : authority.trim(); |
| | | } |
| | | |
| | | public String getRanges() { |
| | | return ranges; |
| | | } |
| | | |
| | | public void setRanges(String ranges) { |
| | | this.ranges = ranges; |
| | | } |
| | | |
| | | /** 有效开始时间 validstarttime **/ |
| | | public Date getValidstarttime() { |
| | | return validstarttime; |
| | | } |
| | | |
| | | /** 有效开始时间 validstarttime **/ |
| | | public void setValidstarttime(Date validstarttime) { |
| | | this.validstarttime = validstarttime; |
| | | } |
| | | |
| | | /** validendtime **/ |
| | | public Date getValidendtime() { |
| | | return validendtime; |
| | | } |
| | | |
| | | /** validendtime **/ |
| | | public void setValidendtime(Date validendtime) { |
| | | this.validendtime = validendtime; |
| | | } |
| | | |
| | | /** 企业信息id enterpriseid **/ |
| | | public Long getEnterpriseid() { |
| | | return enterpriseid; |
| | | } |
| | | |
| | | /** 企业信息id enterpriseid **/ |
| | | public void setEnterpriseid(Long enterpriseid) { |
| | | this.enterpriseid = enterpriseid; |
| | | } |
| | | |
| | | /** 创建人id createby **/ |
| | | public Long getCreateby() { |
| | | return createby; |
| | | } |
| | | |
| | | /** 创建人id createby **/ |
| | | public void setCreateby(Long createby) { |
| | | this.createby = createby; |
| | | } |
| | | |
| | | /** 创建人name createbyname **/ |
| | | public String getCreatebyname() { |
| | | return createbyname; |
| | | } |
| | | |
| | | /** 创建人name createbyname **/ |
| | | public void setCreatebyname(String createbyname) { |
| | | this.createbyname = createbyname == null ? null : createbyname.trim(); |
| | | } |
| | | |
| | | /** 更新人id updateby **/ |
| | | public Long getUpdateby() { |
| | | return updateby; |
| | | } |
| | | |
| | | /** 更新人id updateby **/ |
| | | public void setUpdateby(Long updateby) { |
| | | this.updateby = updateby; |
| | | } |
| | | |
| | | /** 更新人name updatebyname **/ |
| | | public String getUpdatebyname() { |
| | | return updatebyname; |
| | | } |
| | | |
| | | /** 更新人name updatebyname **/ |
| | | public void setUpdatebyname(String updatebyname) { |
| | | this.updatebyname = updatebyname == null ? null : updatebyname.trim(); |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public Boolean getValidflag() { |
| | | return validflag; |
| | | } |
| | | |
| | | /** 有效标识 validflag **/ |
| | | public void setValidflag(Boolean validflag) { |
| | | this.validflag = validflag; |
| | | } |
| | | |
| | | public String getImgurl() { |
| | | return imgurl; |
| | | } |
| | | |
| | | public void setImgurl(String imgurl) { |
| | | this.imgurl = imgurl; |
| | | } |
| | | |
| | | public Date getUpdatetime() { |
| | | return updatetime; |
| | | } |
| | | |
| | | public void setUpdatetime(Date updatetime) { |
| | | this.updatetime = updatetime; |
| | | } |
| | | |
| | | public Date getCreatetime() { |
| | | return createtime; |
| | | } |
| | | |
| | | public void setCreatetime(Date createtime) { |
| | | this.createtime = createtime; |
| | | } |
| | | |
| | | public List<EnterpriseResource> getEnterpriseResources() { |
| | | return enterpriseResources; |
| | | } |
| | | |
| | | public void setEnterpriseResources(List<EnterpriseResource> enterpriseResources) { |
| | | this.enterpriseResources = enterpriseResources; |
| | | } |
| | | } |