📄 sysservice.java
字号:
package com.chinahr.pojo;
import java.util.Date;
/**
* SysService generated by MyEclipse Persistence Tools
*/
public class SysService implements java.io.Serializable {
// Fields
private Integer serviceId;
private SysWordBook sysWordBook=new SysWordBook();
private UserCompany userCompany=new UserCompany();
private String pactName;
private String serviceItem;
private Date beginDate;
private Date endDate;
// Constructors
/** default constructor */
public SysService() {
}
/** full constructor */
public SysService(SysWordBook sysWordBook, UserCompany userCompany,
String pactName, String serviceItem, Date beginDate, Date endDate) {
this.sysWordBook = sysWordBook;
this.userCompany = userCompany;
this.pactName = pactName;
this.serviceItem = serviceItem;
this.beginDate = beginDate;
this.endDate = endDate;
}
// Property accessors
public Integer getServiceId() {
return this.serviceId;
}
public void setServiceId(Integer serviceId) {
this.serviceId = serviceId;
}
public SysWordBook getSysWordBook() {
return this.sysWordBook;
}
public void setSysWordBook(SysWordBook sysWordBook) {
this.sysWordBook = sysWordBook;
}
public UserCompany getUserCompany() {
return this.userCompany;
}
public void setUserCompany(UserCompany userCompany) {
this.userCompany = userCompany;
}
public String getPactName() {
return this.pactName;
}
public void setPactName(String pactName) {
this.pactName = pactName;
}
public String getServiceItem() {
return this.serviceItem;
}
public void setServiceItem(String serviceItem) {
this.serviceItem = serviceItem;
}
public Date getBeginDate() {
return this.beginDate;
}
public void setBeginDate(Date beginDate) {
this.beginDate = beginDate;
}
public Date getEndDate() {
return this.endDate;
}
public void setEndDate(Date endDate) {
this.endDate = endDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -