?? complaint.java
字號:
package com.yuanchung.sales.model.service;
import java.util.Date;
/**
* Complaint entity.
*
* @author MyEclipse Persistence Tools
*/
public class Complaint implements java.io.Serializable {
// Fields
private Integer id;
private String content;
private Date time;
private Integer way;
private Date resolveTime;
private Integer state;
// Constructors
/** default constructor */
public Complaint() {
}
/** minimal constructor */
public Complaint(String content, Date time) {
this.content = content;
this.time = time;
}
/** full constructor */
public Complaint(String content, Date time,
Integer way, Date resolveTime, Integer state) {
this.content = content;
this.time = time;
this.way = way;
this.resolveTime = resolveTime;
this.state = state;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public Date getTime() {
return this.time;
}
public void setTime(Date time) {
this.time = time;
}
public Integer getWay() {
return this.way;
}
public void setWay(Integer way) {
this.way = way;
}
public Date getResolveTime() {
return this.resolveTime;
}
public void setResolveTime(Date resolveTime) {
this.resolveTime = resolveTime;
}
public Integer getState() {
return this.state;
}
public void setState(Integer state) {
this.state = state;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -