|
@@ -395,16 +395,16 @@ public class WeChatServiceImpl implements WeChatService {
|
|
|
// 判断此用户是否已有资格
|
|
|
FullReduction fullReduction = memberDao.getFullReduction(fromUserName);
|
|
|
if (fullReduction != null) {
|
|
|
- StringBuffer buffer = new StringBuffer(NameUtils.getConfig("FEMALE_LADY_REPLY"));
|
|
|
- return buffer.toString();
|
|
|
+ /*StringBuffer buffer = new StringBuffer(NameUtils.getConfig("FEMALE_LADY_REPLY"));*/
|
|
|
+ return ResultInfo.female_lady_reply;
|
|
|
}
|
|
|
// 绑定关系
|
|
|
int count = memberDao.addFullReduction(fromUserName);
|
|
|
if (count < 1) {
|
|
|
return NameUtils.getConfig("FEMALE_LADY_ERROR");
|
|
|
}else{
|
|
|
- StringBuffer buffer = new StringBuffer(NameUtils.getConfig("FEMALE_LADY_REPLY"));
|
|
|
- return buffer.toString();
|
|
|
+ /*StringBuffer buffer = new StringBuffer(NameUtils.getConfig("FEMALE_LADY_REPLY"));*/
|
|
|
+ return ResultInfo.female_lady_reply;
|
|
|
}
|
|
|
}else{
|
|
|
return NameUtils.getConfig("FEMALE_LADY_INTRODUCE");
|