?? sequence.java
字號:
package org.springframework.samples.jpetstore.dao.ibatis;
import java.io.Serializable;
public class Sequence implements Serializable {
/* Private Fields */
private String name;
private int nextId;
/* Constructors */
public Sequence() {
}
public Sequence(String name, int nextId) {
this.name = name;
this.nextId = nextId;
}
/* JavaBeans Properties */
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public int getNextId() { return nextId; }
public void setNextId(int nextId) { this.nextId = nextId; }
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -