日期:2014-05-19 浏览次数:20870 次
public class Themes{
private Integer id; //主题编号
private String title; //标题
private String content; //主题内容
//@onetomany 这里就是onetomany
private Map rmap = new HashMap(); //回复的map集合
//get/set
}
public class Replys{
private Integer id ; //回复编号
private String content; //回复内容
private Themes themes; //主题对象
//get/set
}