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

📄 product.java

📁 一个TSH(tapestry+Hibernate+Spring)配置例子
💻 JAVA
字号:
package com.Chang.service.dao.hibernate.po;



/**
 * Product generated by MyEclipse - Hibernate Tools
 */

public class Product  implements java.io.Serializable {


    // Fields    

     private String productid;
     private String catid;
     private String image;


    // Constructors

    /** default constructor */
    public Product() {
    }
    
    /** constructor with id */
    public Product(String productid) {
        this.productid = productid;
    }

    

   
    // Property accessors

    public String getProductid() {
        return this.productid;
    }
    
    public void setProductid(String productid) {
        this.productid = productid;
    }

    public String getCatid() {
        return this.catid;
    }
    
    public void setCatid(String catid) {
        this.catid = catid;
    }

    public String getImage() {
        return this.image;
    }
    
    public void setImage(String image) {
        this.image = image;
    }
   








}

⌨️ 快捷键说明

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