CourseVO.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package bible.ejb.entity.cmp;
- public class CourseVO implements java.io.Serializable
- {
- private Integer id;
- private String name;
- private double credits;
- public CourseVO() {
- }
- public CourseVO(Integer id) {
- this.id = id;
- }
- public Integer getId() {
- return id;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getName() {
- return name;
- }
- public void setCredits(double credits) {
- this.credits = credits;
- }
- public double getCredits() {
- return credits;
- }
- }