assetclassdao.java

来自「固定资产管理系统包括一个基本的部分」· Java 代码 · 共 36 行

JAVA
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?