parent
b38510b1db
commit
0a00898ce0
@ -0,0 +1,13 @@ |
||||
package com.share.help.dao; |
||||
|
||||
import com.share.help.entity.FriendEntity; |
||||
import org.apache.ibatis.annotations.Insert; |
||||
|
||||
/** |
||||
* 添加好友 |
||||
*/ |
||||
public interface FriendMapper { |
||||
|
||||
@Insert("insert into friend(source_user_id,target_user_id) value(#{sourceUserId},#{targetUserId})") |
||||
boolean addFriend(FriendEntity friendEntity); |
||||
} |
@ -0,0 +1,34 @@ |
||||
package com.share.help.form; |
||||
|
||||
/** |
||||
* 同意好友邀请表单 |
||||
*/ |
||||
public class AgreeFriendForm { |
||||
private Long leaveWordId; |
||||
private String sourceUserId; |
||||
private String targetUserId; |
||||
|
||||
public Long getLeaveWordId() { |
||||
return leaveWordId; |
||||
} |
||||
|
||||
public void setLeaveWordId(Long leaveWordId) { |
||||
this.leaveWordId = leaveWordId; |
||||
} |
||||
|
||||
public String getSourceUserId() { |
||||
return sourceUserId; |
||||
} |
||||
|
||||
public void setSourceUserId(String sourceUserId) { |
||||
this.sourceUserId = sourceUserId; |
||||
} |
||||
|
||||
public String getTargetUserId() { |
||||
return targetUserId; |
||||
} |
||||
|
||||
public void setTargetUserId(String targetUserId) { |
||||
this.targetUserId = targetUserId; |
||||
} |
||||
} |
@ -0,0 +1,8 @@ |
||||
package com.share.help.form; |
||||
|
||||
public enum NotActivityStatus { |
||||
//推荐
|
||||
recommend, |
||||
//好友
|
||||
friend |
||||
} |
@ -0,0 +1,27 @@ |
||||
package com.share.help.form; |
||||
|
||||
/** |
||||
* 发送好友邀请表单 |
||||
*/ |
||||
public class SendFriendForm { |
||||
//发送邀请用户
|
||||
private String sourceUserId; |
||||
//添加用户
|
||||
private String targetUserId; |
||||
|
||||
public String getSourceUserId() { |
||||
return sourceUserId; |
||||
} |
||||
|
||||
public void setSourceUserId(String sourceUserId) { |
||||
this.sourceUserId = sourceUserId; |
||||
} |
||||
|
||||
public String getTargetUserId() { |
||||
return targetUserId; |
||||
} |
||||
|
||||
public void setTargetUserId(String targetUserId) { |
||||
this.targetUserId = targetUserId; |
||||
} |
||||
} |
Loading…
Reference in new issue