📄 grouppapership.java
字号:
package com.jlobo.web.beans;
import com.jlobo.identity.Group;
/**
* GroupPaperShip generated by MyEclipse Persistence Tools
*/
public class GroupPaperShip implements java.io.Serializable {
// Fields
private Long id;
private Examination examination;
private Group group;
private String _class;
private String describe;
private String remark;
private Double sort;
private Long status;
// Constructors
/** default constructor */
public GroupPaperShip() {
}
/** full constructor */
public GroupPaperShip(Examination examination, Group group, String _class, String describe, String remark, Double sort, Long status) {
this.examination = examination;
this.group = group;
this._class = _class;
this.describe = describe;
this.remark = remark;
this.sort = sort;
this.status = status;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Examination getExamination() {
return this.examination;
}
public void setExamination(Examination examination) {
this.examination = examination;
}
public Group getGroup() {
return this.group;
}
public void setGroup(Group group) {
this.group = group;
}
public String get_class() {
return this._class;
}
public void set_class(String _class) {
this._class = _class;
}
public String getDescribe() {
return this.describe;
}
public void setDescribe(String describe) {
this.describe = describe;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Double getSort() {
return this.sort;
}
public void setSort(Double sort) {
this.sort = sort;
}
public Long getStatus() {
return this.status;
}
public void setStatus(Long status) {
this.status = status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -