📄 outstoredocument.java
字号:
package cn.bway.foreigntrade.repertory.outstore.document.model;
/**
* Outstoredocument generated by MyEclipse Persistence Tools
*/
public class Outstoredocument implements java.io.Serializable {
// Fields
private String id;
private String outtime;
private String storetype;
private String outman;
private String notes;
private String documentname;
private String checks;
// Constructors
/** default constructor */
public Outstoredocument() {
}
/** full constructor */
public Outstoredocument(String outtime, String storetype, String outman, String notes, String documentname, String checks) {
this.outtime = outtime;
this.storetype = storetype;
this.outman = outman;
this.notes = notes;
this.documentname = documentname;
this.checks = checks;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getOuttime() {
return this.outtime;
}
public void setOuttime(String outtime) {
this.outtime = outtime;
}
public String getStoretype() {
return this.storetype;
}
public void setStoretype(String storetype) {
this.storetype = storetype;
}
public String getOutman() {
return this.outman;
}
public void setOutman(String outman) {
this.outman = outman;
}
public String getNotes() {
return this.notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getDocumentname() {
return this.documentname;
}
public void setDocumentname(String documentname) {
this.documentname = documentname;
}
public String getChecks() {
return this.checks;
}
public void setChecks(String checks) {
this.checks = checks;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -