?? contactvo.java
字號:
package com.yuanchung.sales.vo.contact;
import com.yuanchung.sales.model.customer.Customer;
import com.yuanchung.sales.model.user.User;
public class ContactVo implements java.io.Serializable{
private Integer id;
private String name;
private String satulation;//稱謂
private String sex;
private String domicile;//籍貫
private String birthday;
private String education;
private String position;
private String mobilePhone;
private String mateName;
private String children;
private Integer isWine;
private Integer isSmoke;
private String entertainment;
private String assistant;
private String assiPhone;
private String comPhone;
private String email;
private String msn;
private String fax;
private String homeAddr;
private String homePhone;
private String interests;
private String characters;
private String inDate;
private Integer flag;
private String lastModifyTime;
private String modifyName;
private Integer modifyManId;
private User user;
private int customerId;
private String customerName;
private String departMent;//部門
private String remark;//備注
private String roleName;
private Integer isprincipal;
//2009-02-20 add 數據范圍標識
private String delRights = "n";
private String modifyRights = "n";
//end
public ContactVo() {
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public String getDepartMent() {
return departMent;
}
public void setDepartMent(String departMent) {
this.departMent = departMent;
}
public ContactVo(Integer id, String name, String comPhone, String email,
int customerId, String customerName, User user) {
this.id = id;
this.name = name;
this.comPhone = comPhone;
this.email = email;
this.customerId = customerId;
this.customerName = customerName;
this.user = user;
}
public ContactVo(Integer id, String name, String comPhone, String email,
User user) {
this.id = id;
this.name = name;
this.comPhone = comPhone;
this.email = email;
this.user = user;
}
public ContactVo(Integer id, String name, String lastModifyTime,
String modifyName, Integer modifyManId) {
this.id = id;
this.name = name;
this.lastModifyTime = lastModifyTime;
this.modifyName = modifyName;
this.modifyManId = modifyManId;
}
public String getModifyName() {
return modifyName;
}
public void setModifyName(String modifyName) {
this.modifyName = modifyName;
}
public ContactVo(Integer id, String name,int customerId, String customerName, String comPhone, String email,
String roleName, Integer isprincipal) {
this.id = id;
this.name = name;
this.comPhone = comPhone;
this.email = email;
this.roleName = roleName;
this.isprincipal = isprincipal;
}
public ContactVo(Integer id, String name, int customerId,
String customerName) {
super();
this.id = id;
this.name = name;
this.customerId = customerId;
this.customerName = customerName;
}
public int getCustomerId() {
return customerId;
}
public void setCustomerId(int customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public ContactVo(Integer id, String name, String position,
String comPhone, String email) {
this.id = id;
this.name = name;
this.position = position;
this.comPhone = comPhone;
this.email = email;
}
public ContactVo(Integer id, String name, Integer customerId, String customerName) {
this.id = id;
this.name = name;
this.customerId = customerId;
this.customerName = customerName;
}
public ContactVo(Integer id, String name, Integer customerId, String customerName, String comPhone) {
this.id = id;
this.name = name;
this.comPhone = comPhone;
this.customerId = customerId;
this.customerName = customerName;
}
//2009-02-25 add
public ContactVo(Integer id, String name, Integer customerId, String customerName, String comPhone,String delRights,String modifyRights) {
this.id = id;
this.name = name;
this.comPhone = comPhone;
this.customerId = customerId;
this.customerName = customerName;
this.delRights = delRights;
this.modifyRights = modifyRights;
}
//end add
public String getRoleName() {
return roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public Integer getIsprincipal() {
return isprincipal;
}
public void setIsprincipal(Integer isprincipal) {
this.isprincipal = isprincipal;
}
public String getInDate() {
return inDate;
}
public void setInDate(String inDate) {
this.inDate = inDate;
}
public Integer getFlag() {
return flag;
}
public void setFlag(Integer flag) {
this.flag = flag;
}
public String getLastModifyTime() {
return lastModifyTime;
}
public void setLastModifyTime(String lastModifyTime) {
this.lastModifyTime = lastModifyTime;
}
public Integer getModifyManId() {
return modifyManId;
}
public void setModifyManId(Integer modifyManId) {
this.modifyManId = modifyManId;
}
public ContactVo(Integer id, String name) {
this.id = id;
this.name = name;
}
public ContactVo(Integer id, String name,String customerName) {
this.id = id;
this.name = name;
this.customerName = customerName;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSatulation() {
return satulation;
}
public void setSatulation(String satulation) {
this.satulation = satulation;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String getDomicile() {
return domicile;
}
public void setDomicile(String domicile) {
this.domicile = domicile;
}
public String getBirthday() {
return birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getEducation() {
return education;
}
public void setEducation(String education) {
this.education = education;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
public String getMobilePhone() {
return mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public String getMateName() {
return mateName;
}
public void setMateName(String mateName) {
this.mateName = mateName;
}
public String getChildren() {
return children;
}
public void setChildren(String children) {
this.children = children;
}
public Integer getIsWine() {
return isWine;
}
public void setIsWine(Integer isWine) {
this.isWine = isWine;
}
public Integer getIsSmoke() {
return isSmoke;
}
public void setIsSmoke(Integer isSmoke) {
this.isSmoke = isSmoke;
}
public String getEntertainment() {
return entertainment;
}
public void setEntertainment(String entertainment) {
this.entertainment = entertainment;
}
public String getAssistant() {
return assistant;
}
public void setAssistant(String assistant) {
this.assistant = assistant;
}
public String getAssiPhone() {
return assiPhone;
}
public void setAssiPhone(String assiPhone) {
this.assiPhone = assiPhone;
}
public String getComPhone() {
return comPhone;
}
public void setComPhone(String comPhone) {
this.comPhone = comPhone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getMsn() {
return msn;
}
public void setMsn(String msn) {
this.msn = msn;
}
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getHomeAddr() {
return homeAddr;
}
public void setHomeAddr(String homeAddr) {
this.homeAddr = homeAddr;
}
public String getHomePhone() {
return homePhone;
}
public void setHomePhone(String homePhone) {
this.homePhone = homePhone;
}
public String getInterests() {
return interests;
}
public void setInterests(String interests) {
this.interests = interests;
}
public String getCharacters() {
return characters;
}
public void setCharacters(String characters) {
this.characters = characters;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String getDelRights() {
return delRights;
}
public void setDelRights(String delRights) {
this.delRights = delRights;
}
public String getModifyRights() {
return modifyRights;
}
public void setModifyRights(String modifyRights) {
this.modifyRights = modifyRights;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -