|
@@ -72,10 +72,9 @@ public class BusPushMsgServiceImpl implements IBusPushMsgService {
|
|
|
* 消息推送
|
|
* 消息推送
|
|
|
*/
|
|
*/
|
|
|
@Override
|
|
@Override
|
|
|
- public void create(String userName, String title, String content, String param, Long busId,
|
|
|
|
|
|
|
+ public void create(String userId, String title, String content, String param, Long busId,
|
|
|
String busType) {
|
|
String busType) {
|
|
|
- SysUser user = sysUserService.selectUserByUserName(userName);
|
|
|
|
|
- create(user, title, content, param, busId, busType);
|
|
|
|
|
|
|
+ create(Long.parseLong(userId), title, content, param, busId, busType);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|