scaccess.java
来自「Athena酒店小组_Athena酒店管理系统」· Java 代码 · 共 47 行
JAVA
47 行
/*
* SCAccess.java
*
* Created on 2007年5月23日, 上午1:40
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package vincent;
import plugin.*;
/**
*
* @author Virlene Cheng
*/
public class SCAccess
{
private IDBResource dbRes;
/** Creates a new instance of SCAccess */
public SCAccess(IDBResource dbRes)
{
this.dbRes = dbRes;
}
public int insert(SalaryChange sc)
{
//TODO insert
return -1;
}
public int update(SalaryChange sc)
{
//TODO update
return -1;
}
public int delete(SalaryChange sc)
{
//TODO delete
return -1;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?