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

📄 imagedb.java

📁 随书光盘:精通Sping 2.0 的随书源代码
💻 JAVA
字号:
package org.springframework.samples.imagedb;
// Generated 2006-10-4 23:30:06 by Hibernate Tools 3.2.0.beta7



/**
 * Imagedb generated by hbm2java
 */
public class Imagedb  implements java.io.Serializable {

    // Fields    

     private String imageName;
     private byte[] content;
     private String description;

     // Constructors

    /** default constructor */
    public Imagedb() {
    }

	/** minimal constructor */
    public Imagedb(String imageName) {
        this.imageName = imageName;
    }
    /** full constructor */
    public Imagedb(String imageName, byte[] content, String description) {
       this.imageName = imageName;
       this.content = content;
       this.description = description;
    }
   
    // Property accessors
    public String getImageName() {
        return this.imageName;
    }
    
    public void setImageName(String imageName) {
        this.imageName = imageName;
    }
    public byte[] getContent() {
        return this.content;
    }
    
    public void setContent(byte[] content) {
        this.content = content;
    }
    public String getDescription() {
        return this.description;
    }
    
    public void setDescription(String description) {
        this.description = description;
    }




}


⌨️ 快捷键说明

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