实现方法:
- 定义接口,声明置顶、置底、排序方法。
public interface OrderDao {
void top(int id);
void bottom(int id);
void sort(String column);
}
实现方法:
public interface OrderDao {
void top(int id);
void bottom(int id);
void sort(String column);
}