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

📄 smalltag.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
package cn.bway.foreigntrade.commondata.smalltag.model;



/**
 * Smalltag generated by MyEclipse Persistence Tools
 */

public class Smalltag implements java.io.Serializable {


    // Fields    

     private String id;
     private String color;
     private String sizes;
     private String qty;


    // Constructors

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

    
    /** full constructor */
    public Smalltag(String color, String sizes, String qty) {
        this.color = color;
        this.sizes = sizes;
        this.qty = qty;
    }

   
    // Property accessors

    public String getId() {
        return this.id;
    }
    
    public void setId(String id) {
        this.id = id;
    }

    public String getColor() {
        return this.color;
    }
    
    public void setColor(String color) {
        this.color = color;
    }

    public String getSizes() {
        return this.sizes;
    }
    
    public void setSizes(String sizes) {
        this.sizes = sizes;
    }

    public String getQty() {
        return this.qty;
    }
    
    public void setQty(String qty) {
        this.qty = qty;
    }
   








}

⌨️ 快捷键说明

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