我想通過休眠來創建好友系統,並且我需要檢查此用戶與其他用戶關聯的時間。休眠用戶和朋友關係添加其他列
我希望像下面的代碼表中的列:
table 1:
int id;
String name;
table 2:
int user_id;
int friend_id;
Date startdate;
POJO代碼:
public class User {
private int id;
private String name;
private Map<User,Date> friends;
}
你必須更加精確。你展示你的代碼是好事,但你的問題是什麼? – Magnilex