📄 assetclassdao.java
字号:
package com.shenlong.assetmanage.dao;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import com.shenlong.assetmanage.domain.AssetClass1;
import com.shenlong.assetmanage.domain.AssetClass2;
public interface AssetClassDao {
public int saveAssetClass1(AssetClass1 ac1) throws SQLException;
public List<AssetClass1> getAllAssetClass1s() throws SQLException;
public Map<String, List<AssetClass2>> getAllClasses() throws SQLException;
public int getClassCountByName(String className) throws SQLException;
public List<AssetClass2> queryClassByName(String className, int page, int total) throws SQLException;
public int modifyAssetClass1(AssetClass1 assetClass1 ) throws SQLException;
public int deleteAssetClass1ById(int id) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -