crmbs.java
来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 103 行
JAVA
103 行
package com.csu.crm.common.vo;
import java.util.Date;
/**
* CrmBs generated by MyEclipse Persistence Tools
*/
public class CrmBs implements java.io.Serializable {
// Fields
private String businessId;
private CrmEmployee crmEmployee;
private CrmContact crmContact;
private CrmCommodity crmCommodity;
private Long quantity;
private Date logDate;
private String description;
// Constructors
/** default constructor */
public CrmBs() {
}
/** full constructor */
public CrmBs(CrmEmployee crmEmployee, CrmContact crmContact,
CrmCommodity crmCommodity, Long quantity, Date logDate,
String description) {
this.crmEmployee = crmEmployee;
this.crmContact = crmContact;
this.crmCommodity = crmCommodity;
this.quantity = quantity;
this.logDate = logDate;
this.description = description;
}
// Property accessors
public String getBusinessId() {
return this.businessId;
}
public void setBusinessId(String businessId) {
this.businessId = businessId;
}
public CrmEmployee getCrmEmployee() {
return this.crmEmployee;
}
public void setCrmEmployee(CrmEmployee crmEmployee) {
this.crmEmployee = crmEmployee;
}
public CrmContact getCrmContact() {
return this.crmContact;
}
public void setCrmContact(CrmContact crmContact) {
this.crmContact = crmContact;
}
public CrmCommodity getCrmCommodity() {
return this.crmCommodity;
}
public void setCrmCommodity(CrmCommodity crmCommodity) {
this.crmCommodity = crmCommodity;
}
public Long getQuantity() {
return this.quantity;
}
public void setQuantity(Long quantity) {
this.quantity = quantity;
}
public Date getLogDate() {
return this.logDate;
}
public void setLogDate(Date logDate) {
this.logDate = logDate;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?