clientcontact.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 79 行
JAVA
79 行
package com.szmx.tlms.admin.model;
import com.szmx.framework.base.model.VersionObject;
import java.io.Serializable;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2006-8-1
* Time: 14:44:18
* To change this template use File | Settings | File Templates.
*/
public class ClientContact extends VersionObject implements Serializable {
private Long id;
private Long clientID;
private String contactname;
private String phone;
private String dept;
private String position;
private String email;
public Long getClientID() {
return clientID;
}
public void setClientID(Long clientID) {
this.clientID = clientID;
}
public String getDept() {
return dept;
}
public void setDept(String dept) {
this.dept = dept;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getContactname() {
return contactname;
}
public void setContactname(String contactname) {
this.contactname = contactname;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?