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

📄 countervo.java

📁 OBPM是一个开源
💻 JAVA
字号:
//Source file: C:\\Java\\workspace\\MyApps\\src\\cn\\myapps\\core\\counter\\ejb\\CounterVO.java

package cn.myapps.core.counter.ejb;

import java.io.Serializable;
import cn.myapps.base.dao.ValueObject;
/**
 * @hibernate.class table="T_COUNTER"
 * @author nicholas
 */
public class CounterVO extends ValueObject implements Serializable 
{
   private String id;
   private String name;
   private int counter;
   
   /**
    * @hibernate.property column="COUNTER"
    * @return Returns the counter.
    * @roseuid 44C5C7D701E5
    */
   public int getCounter() 
   {
		return counter;    
   }
   
   /**
    * @hibernate.id column="ID" generator-class="assigned"
    * @return Returns the id.
    * @roseuid 44C5D2BB02DD
    */
   public String getId() 
   {
		return id;    
   }
   
   /**
    * @hibernate.property column="NAME"
    * @return Returns the name.
    * @roseuid 44C5D2BB02E8
    */
   public String getName() 
   {
		return name;    
   }
   
   /**
    * @param counter
    * The counter to set.
    * @param counter
    * @roseuid 44C5C7D701ED
    */
   public void setCounter(int counter) 
   {
		this.counter = counter;    
   }
   
   /**
    * @param id
    * The id to set.
    * @param id
    * @roseuid 44C5D2BB02E6
    */
   public void setId(String id) 
   {
		this.id = id;    
   }
   
   /**
    * @param name
    * The name to set.
    * @param name
    * @roseuid 44C5D2BB02F1
    */
   public void setName(String name) 
   {
		this.name = name;    
   }
}

⌨️ 快捷键说明

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