📄 corp.java
字号:
package com.idealab.dao;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Corp entity.
*
* @author MyEclipse Persistence Tools
*/
public class Corp implements java.io.Serializable {
// Fields
private Integer pkCorp;
private String name;
private String addr;
private String postcode;
private String legalperson;
private String regicode;
private String regicapital;
private String regiorg;
private String corptype;
private String industry;
private String website;
private String email;
private String tel;
private String tel2;
private String fax;
private String content;
private String goal;
private String devcourse;
private String honor;
// Constructors
/** default constructor */
public Corp() {
}
/** minimal constructor */
public Corp(String name) {
this.name = name;
}
/** full constructor */
public Corp(String name, String addr, String postcode, String legalperson,
String regicode, String regicapital, String regiorg,
String corptype, String industry, String website,
String email, String tel, String tel2, String fax, String content,
String goal, String devcourse, String honor) {
this.name = name;
this.addr = addr;
this.postcode = postcode;
this.legalperson = legalperson;
this.regicode = regicode;
this.regicapital = regicapital;
this.regiorg = regiorg;
this.corptype = corptype;
this.industry = industry;
this.website = website;
this.email = email;
this.tel = tel;
this.tel2 = tel2;
this.fax = fax;
this.content = content;
this.goal = goal;
this.devcourse = devcourse;
this.honor = honor;
}
// Property accessors
public Integer getPkCorp() {
return this.pkCorp;
}
public void setPkCorp(Integer pkCorp) {
this.pkCorp = pkCorp;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getAddr() {
return this.addr;
}
public void setAddr(String addr) {
this.addr = addr;
}
public String getPostcode() {
return this.postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getLegalperson() {
return this.legalperson;
}
public void setLegalperson(String legalperson) {
this.legalperson = legalperson;
}
public String getRegicode() {
return this.regicode;
}
public void setRegicode(String regicode) {
this.regicode = regicode;
}
public String getRegicapital() {
return this.regicapital;
}
public void setRegicapital(String regicapital) {
this.regicapital = regicapital;
}
public String getRegiorg() {
return this.regiorg;
}
public void setRegiorg(String regiorg) {
this.regiorg = regiorg;
}
public String getCorptype() {
return this.corptype;
}
public void setCorptype(String corptype) {
this.corptype = corptype;
}
public String getIndustry() {
return this.industry;
}
public void setIndustry(String industry) {
this.industry = industry;
}
public String getWebsite() {
return this.website;
}
public void setWebsite(String website) {
this.website = website;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getTel2() {
return this.tel2;
}
public void setTel2(String tel2) {
this.tel2 = tel2;
}
public String getFax() {
return this.fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getGoal() {
return this.goal;
}
public void setGoal(String goal) {
this.goal = goal;
}
public String getDevcourse() {
return this.devcourse;
}
public void setDevcourse(String devcourse) {
this.devcourse = devcourse;
}
public String getHonor() {
return this.honor;
}
public void setHonor(String honor) {
this.honor = honor;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -