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

📄 vetcommands.java

📁 利用设计模式设计的宠物中心管理系统!分为管理员管理
💻 JAVA
字号:
package vetcommand;
import command.*;
import java.util.*;

public class VetCommands extends Commands {
	public VetCommands(){
		this.addCommand("InsertVetCommand",new InsertVetCommand());
		this.addCommand("DeleteVetCommand",new DeleteVetCommand());
		this.addCommand("GetVetByIdCommand",new GetVetByIdCommand());
		this.addCommand("ModifyVetCommand",new ModifyVetCommand());
		this.addCommand("GetAllVetCommand",new GetAllVetCommand());
	}
	public Map executeVet(String cmdName,Map param){
		return this.execute(cmdName,param);
	}
}

⌨️ 快捷键说明

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