📄 clinique.java
字号:
package com.pet.pojo;
import java.util.HashSet;
import java.util.Set;
@SuppressWarnings("unchecked")
public class Clinique implements java.io.Serializable {
private static final long serialVersionUID = 1817657373615671500L;
private Integer cid;
private String cliniqueCode;
private String cliniqueAddress;
private String cliniqueName;
private String cliniqueTelephone;
private String cliniqueFaxes;
private Set employees = new HashSet(0);
private Set rails = new HashSet(0);
/** default constructor */
public Clinique() {
}
public Clinique(String cliniqueCode, String cliniqueAddress,String cliniqueName,
String cliniqueTelephone, String cliniqueFaxes,
Set employees, Set rails) {
this.cliniqueCode = cliniqueCode;
this.cliniqueAddress = cliniqueAddress;
this.cliniqueName=cliniqueName;
this.cliniqueTelephone = cliniqueTelephone;
this.cliniqueFaxes = cliniqueFaxes;
this.employees = employees;
this.rails = rails;
}
public Integer getCid() {
return this.cid;
}
public void setCid(Integer cid) {
this.cid = cid;
}
public String getCliniqueCode() {
return this.cliniqueCode;
}
public void setCliniqueCode(String cliniqueCode) {
this.cliniqueCode = cliniqueCode;
}
public String getCliniqueAddress() {
return this.cliniqueAddress;
}
public void setCliniqueAddress(String cliniqueAddress) {
this.cliniqueAddress = cliniqueAddress;
}
public String getCliniqueTelephone() {
return this.cliniqueTelephone;
}
public void setCliniqueTelephone(String cliniqueTelephone) {
this.cliniqueTelephone = cliniqueTelephone;
}
public String getCliniqueFaxes() {
return this.cliniqueFaxes;
}
public void setCliniqueFaxes(String cliniqueFaxes) {
this.cliniqueFaxes = cliniqueFaxes;
}
public Set getEmployees() {
return this.employees;
}
public void setEmployees(Set employees) {
this.employees = employees;
}
public Set getRails() {
return this.rails;
}
public void setRails(Set rails) {
this.rails = rails;
}
public String getCliniqueName() {
return cliniqueName;
}
public void setCliniqueName(String cliniqueName) {
this.cliniqueName = cliniqueName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -