1 package org.springframework.samples.jpetstore.dao.ibatis; 2 3 import java.io.Serializable ; 4 5 public class Sequence implements Serializable { 6 7 8 9 private String name; 10 private int nextId; 11 12 13 14 public Sequence() { 15 } 16 17 public Sequence(String name, int nextId) { 18 this.name = name; 19 this.nextId = nextId; 20 } 21 22 23 24 public String getName() { return name; } 25 public void setName(String name) { this.name = name; } 26 27 public int getNextId() { return nextId; } 28 public void setNextId(int nextId) { this.nextId = nextId; } 29 30 } 31 | Popular Tags |