?? service.java
字號:
/**
*
*/
package com.qrsx.qrsxcrm.model;
/**
* 售后服務實體對象
* @author Administrator
*
*/
public class Service
{
private String id; //主鍵
private Client client; //被服務的客戶(一對一)
private ServiceType serviceType; //服務類型
private String beginTime; //開始時間
private String endTime; //結束時間
private Employee employee; //負責人(一對一)
private Integer state; //服務狀態
private String remark; //服務總結
private String clientId;
private String employeeId;
private String serviceTypeId;
private String trouble;
private String solve;
/**
* @return the solve
*/
public String getSolve() {
return solve;
}
/**
* @param solve the solve to set
*/
public void setSolve(String solve) {
this.solve = solve;
}
/**
* @return the trouble
*/
public String getTrouble() {
return trouble;
}
/**
* @param trouble the trouble to set
*/
public void setTrouble(String trouble) {
this.trouble = trouble;
}
/**
* @return the beginTime
*/
public String getBeginTime() {
return beginTime;
}
/**
* @param beginTime the beginTime to set
*/
public void setBeginTime(String beginTime) {
this.beginTime = beginTime;
}
/**
* @return the client
*/
public Client getClient() {
return client;
}
/**
* @param client the client to set
*/
public void setClient(Client client) {
this.client = client;
}
/**
* @return the employee
*/
public Employee getEmployee() {
return employee;
}
/**
* @param employee the employee to set
*/
public void setEmployee(Employee employee) {
this.employee = employee;
}
/**
* @return the endTime
*/
public String getEndTime() {
return endTime;
}
/**
* @param endTime the endTime to set
*/
public void setEndTime(String endTime) {
this.endTime = endTime;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the remark
*/
public String getRemark() {
return remark;
}
/**
* @param remark the remark to set
*/
public void setRemark(String remark) {
this.remark = remark;
}
/**
* @return the state
*/
public Integer getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(Integer state) {
this.state = state;
}
/**
* @return the clientId
*/
public String getClientId() {
return clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(String clientId) {
this.clientId = clientId;
}
/**
* @return the employeeId
*/
public String getEmployeeId() {
return employeeId;
}
/**
* @param employeeId the employeeId to set
*/
public void setEmployeeId(String employeeId) {
this.employeeId = employeeId;
}
/**
* @return the serviceType
*/
public ServiceType getServiceType() {
return serviceType;
}
/**
* @param serviceType the serviceType to set
*/
public void setServiceType(ServiceType serviceType) {
this.serviceType = serviceType;
}
/**
* @return the serviceTypeId
*/
public String getServiceTypeId() {
return serviceTypeId;
}
/**
* @param serviceTypeId the serviceTypeId to set
*/
public void setServiceTypeId(String serviceTypeId) {
this.serviceTypeId = serviceTypeId;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -