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

📄 categoryentity.java

📁 一个基于java工厂模式的 的实现
💻 JAVA
字号:
/*
 * CategoryEntity.java
 *
 * Created on 2007年4月17日, 下午3:43
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.ebuy.entities;

/**
 *
 * @author Administrator
 */
public class CategoryEntity
{
    
    private int categoryid;
    private String categoryname;
    private String description;
    
    public CategoryEntity()
    {
    }

    public String getDescription()
    {
        return description;
    }

    public void setDescription(String description)
    {
        this.description = description;
    }

    public int getCategoryid()
    {
        return categoryid;
    }

    public void setCategoryid(int categoryid)
    {
        this.categoryid = categoryid;
    }

    public String getCategoryname()
    {
        return categoryname;
    }

    public void setCategoryname(String categoryname)
    {
        this.categoryname = categoryname;
    }
    
}

⌨️ 快捷键说明

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