⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dbtrans.java

📁 java阿里巴巴代码
💻 JAVA
字号:
package com.saas.sys.dbm;

public class Dbtrans {
	private DbConnect connect = new DbConnect();
	private Dbexecute execute = new Dbexecute();
	private Dbtable table = new Dbtable();
	private Dbcommit commit = new Dbcommit();
	
	public void setConnect(DbConnect connect) 
	{
		this.connect = connect;
	}
	public void setExecutet(Dbexecute execute) 
	{
		this.execute = execute;
	}
	public void setTtable(Dbtable table) 
	{
		this.table = table;
	}
	public void setCommite(Dbcommit commit) 
	{
		this.commit = commit;
	}
	public DbConnect getConnect()
	{
		return connect;
	}
	public Dbexecute getExecute()
	{
		return execute;
	}
	public Dbtable getTable()
	{
		return table;
	}
	public Dbcommit getCommit()
	{
		return commit;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -