package com.goafanti.common.model; import java.math.BigDecimal; import java.util.Date; import java.io.Serializable; public class PatentNew implements Serializable { /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.id * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Integer id; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.patent_no * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String patentNo; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.name * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String name; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.type * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Integer type; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.status * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Integer status; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.apply_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Date applyDate; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.authorization_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Date authorizationDate; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.patent_amount * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private BigDecimal patentAmount; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.applicant * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String applicant; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.province * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Integer province; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.contact_mobile * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String contactMobile; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.email * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String email; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.certificate_url * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String certificateUrl; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.create_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Date createTime; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.update_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Date updateTime; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.aid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String aid; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.years * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private Integer years; /** * This field was generated by MyBatis Generator. This field corresponds to the database column patent_new.uid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private String uid; /** * This field was generated by MyBatis Generator. This field corresponds to the database table patent_new * @mbg.generated Thu May 27 11:21:28 CST 2021 */ private static final long serialVersionUID = 1L; /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.id * @return the value of patent_new.id * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Integer getId() { return id; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.id * @param id the value for patent_new.id * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setId(Integer id) { this.id = id; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.patent_no * @return the value of patent_new.patent_no * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getPatentNo() { return patentNo; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.patent_no * @param patentNo the value for patent_new.patent_no * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setPatentNo(String patentNo) { this.patentNo = patentNo == null ? null : patentNo.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.name * @return the value of patent_new.name * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getName() { return name; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.name * @param name the value for patent_new.name * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setName(String name) { this.name = name == null ? null : name.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.type * @return the value of patent_new.type * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Integer getType() { return type; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.type * @param type the value for patent_new.type * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setType(Integer type) { this.type = type; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.status * @return the value of patent_new.status * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Integer getStatus() { return status; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.status * @param status the value for patent_new.status * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setStatus(Integer status) { this.status = status; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.apply_date * @return the value of patent_new.apply_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Date getApplyDate() { return applyDate; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.apply_date * @param applyDate the value for patent_new.apply_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setApplyDate(Date applyDate) { this.applyDate = applyDate; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.authorization_date * @return the value of patent_new.authorization_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Date getAuthorizationDate() { return authorizationDate; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.authorization_date * @param authorizationDate the value for patent_new.authorization_date * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setAuthorizationDate(Date authorizationDate) { this.authorizationDate = authorizationDate; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.patent_amount * @return the value of patent_new.patent_amount * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public BigDecimal getPatentAmount() { return patentAmount; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.patent_amount * @param patentAmount the value for patent_new.patent_amount * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setPatentAmount(BigDecimal patentAmount) { this.patentAmount = patentAmount; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.applicant * @return the value of patent_new.applicant * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getApplicant() { return applicant; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.applicant * @param applicant the value for patent_new.applicant * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setApplicant(String applicant) { this.applicant = applicant == null ? null : applicant.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.province * @return the value of patent_new.province * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Integer getProvince() { return province; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.province * @param province the value for patent_new.province * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setProvince(Integer province) { this.province = province; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.contact_mobile * @return the value of patent_new.contact_mobile * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getContactMobile() { return contactMobile; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.contact_mobile * @param contactMobile the value for patent_new.contact_mobile * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setContactMobile(String contactMobile) { this.contactMobile = contactMobile == null ? null : contactMobile.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.email * @return the value of patent_new.email * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getEmail() { return email; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.email * @param email the value for patent_new.email * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setEmail(String email) { this.email = email == null ? null : email.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.certificate_url * @return the value of patent_new.certificate_url * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getCertificateUrl() { return certificateUrl; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.certificate_url * @param certificateUrl the value for patent_new.certificate_url * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setCertificateUrl(String certificateUrl) { this.certificateUrl = certificateUrl == null ? null : certificateUrl.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.create_time * @return the value of patent_new.create_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Date getCreateTime() { return createTime; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.create_time * @param createTime the value for patent_new.create_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.update_time * @return the value of patent_new.update_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Date getUpdateTime() { return updateTime; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.update_time * @param updateTime the value for patent_new.update_time * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.aid * @return the value of patent_new.aid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getAid() { return aid; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.aid * @param aid the value for patent_new.aid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setAid(String aid) { this.aid = aid == null ? null : aid.trim(); } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.years * @return the value of patent_new.years * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public Integer getYears() { return years; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.years * @param years the value for patent_new.years * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setYears(Integer years) { this.years = years; } /** * This method was generated by MyBatis Generator. This method returns the value of the database column patent_new.uid * @return the value of patent_new.uid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public String getUid() { return uid; } /** * This method was generated by MyBatis Generator. This method sets the value of the database column patent_new.uid * @param uid the value for patent_new.uid * @mbg.generated Thu May 27 11:21:28 CST 2021 */ public void setUid(String uid) { this.uid = uid == null ? null : uid.trim(); } /** * This method was generated by MyBatis Generator. This method corresponds to the database table patent_new * @mbg.generated Thu May 27 11:21:28 CST 2021 */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(getClass().getSimpleName()); sb.append(" ["); sb.append("Hash = ").append(hashCode()); sb.append(", id=").append(id); sb.append(", patentNo=").append(patentNo); sb.append(", name=").append(name); sb.append(", type=").append(type); sb.append(", status=").append(status); sb.append(", applyDate=").append(applyDate); sb.append(", authorizationDate=").append(authorizationDate); sb.append(", patentAmount=").append(patentAmount); sb.append(", applicant=").append(applicant); sb.append(", province=").append(province); sb.append(", contactMobile=").append(contactMobile); sb.append(", email=").append(email); sb.append(", certificateUrl=").append(certificateUrl); sb.append(", createTime=").append(createTime); sb.append(", updateTime=").append(updateTime); sb.append(", aid=").append(aid); sb.append(", years=").append(years); sb.append(", uid=").append(uid); sb.append(", serialVersionUID=").append(serialVersionUID); sb.append("]"); return sb.toString(); } }