📄 assetclass2dao.java
字号:
package com.shenlong.assetmanage.dao;
import java.sql.SQLException;
import java.util.List;
import com.shenlong.assetmanage.domain.AssetClass2;
public interface AssetClass2Dao {
public int saveAssetClass2(AssetClass2 ac2) throws SQLException;
public List<AssetClass2> getAllAssetClass2s() throws SQLException;
public List<AssetClass2> getAllAssetClass(String split) throws SQLException;
public int modifyAssetClass2(AssetClass2 assetClass2 ) throws SQLException;
public int deleteAssetClass2ById(int id) throws SQLException;
public int getAssetClass2CountByClass1(int class1Id) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -