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

📄 e04752ab379d001b14c3fa48fd947afa

📁 用jsf实现cd商店的程序
💻
字号:
package com.tangjun.web.vo;

import com.tangjun.model.exception.MyException;
import com.tangjun.web.pojo.CDType;

public class CDTypeBean extends CDTypeBaseBean
{
	private CDType cdType;
	private String[] types;
	

	public CDType getCdType()
	{
		return cdType;
	}

	public void setCdType(CDType cdType)
	{
		this.cdType = cdType;
	}
	
	public CDType findById(Integer id)
	{
		try
		{
			return this.getCdTypeService().findById(id);
		}
		catch(MyException e)
		{
			e.printStackTrace();
			return null;
		}
	}
	
	public String[] getTypes()
	{
		this.getCdTypeService()
	}
}

⌨️ 快捷键说明

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