CourseVO.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package bible.ejb.entity.cmp;
  2. public class CourseVO implements java.io.Serializable
  3. {
  4.   private Integer id;
  5.   private String name;
  6.   private double credits;
  7.   public CourseVO() {
  8.   }
  9.   public CourseVO(Integer id) {
  10.     this.id = id;
  11.   }
  12.   public Integer getId() {
  13.     return id;
  14.   }
  15.   public void setName(String name) {
  16.     this.name = name;
  17.   }
  18.   public String getName() {
  19.     return name;
  20.   }
  21.   public void setCredits(double credits)   {
  22.     this.credits = credits;
  23.   }
  24.   public double getCredits() {
  25.     return credits;
  26.   }
  27. }