`
cloudtech
  • 浏览: 4637482 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论

public class Classes implements Serializable{

 
阅读更多
package com.tfy.heibernate.mangtoone;


import java.io.Serializable;
import java.util.Set;


public class Classes implements Serializable{


private Long cid;
private String cname;
private String description;
private Set<Student> students;
public Long getCid() {
return cid;
}
public void setCid(Long cid) {
this.cid = cid;
}
public String getCname() {
return cname;
}
public void setCname(String cname) {
this.cname = cname;
}
public Set<Student> getStudents() {
return students;
}
public void setStudents(Set<Student> students) {
this.students = students;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics