?? contactrolevo.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -