contactrolevo.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 103 行
JAVA
103 行
package com.yuanchung.sales.vo.contact;
public class ContactRoleVo implements java.io.Serializable{
private Integer conBusiId;
private Integer contactId;
private String contactName;
private Integer isprincipal;
private Integer roleId;
private String roleName;
private Integer customerId;
private String customerName;
private String email;
private String comPhone;
public ContactRoleVo(Integer conBusiId, Integer contactId, String contactName,
Integer isprincipal,Integer roleId, String roleName, Integer customerId,
String customerName, String email, String comPhone) {
this.conBusiId = conBusiId;
this.contactId = contactId;
this.contactName = contactName;
this.isprincipal = isprincipal;
this.roleId = roleId;
this.roleName = roleName;
this.customerId = customerId;
this.customerName = customerName;
this.email = email;
this.comPhone = comPhone;
}
public Integer getConBusiId() {
return conBusiId;
}
public void setConBusiId(Integer conBusiId) {
this.conBusiId = conBusiId;
}
public ContactRoleVo(Integer contactId, String contactName) {
this.contactId = contactId;
this.contactName = contactName;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getComPhone() {
return comPhone;
}
public void setComPhone(String comPhone) {
this.comPhone = comPhone;
}
public Integer getCustomerId() {
return customerId;
}
public void setCustomerId(Integer customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public Integer getIsprincipal() {
return isprincipal;
}
public void setIsprincipal(Integer isprincipal) {
this.isprincipal = isprincipal;
}
public Integer getContactId() {
return contactId;
}
public void setContactId(Integer contactId) {
this.contactId = contactId;
}
public String getContactName() {
return contactName;
}
public void setContactName(String contactName) {
this.contactName = contactName;
}
public Integer getRoleId() {
return roleId;
}
public void setRoleId(Integer roleId) {
this.roleId = roleId;
}
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?