|
@@ -112,10 +112,10 @@ public class BusQueueServiceImpl implements BusQueueService { |
|
@@ -112,10 +112,10 @@ public class BusQueueServiceImpl implements BusQueueService { |
112
|
public ResultJson insertSelective(BusQueue record) throws IOException, TimeoutException
|
112
|
public ResultJson insertSelective(BusQueue record) throws IOException, TimeoutException
|
113
|
{
|
113
|
{
|
114
|
if (userInfoMapper.selectUserExist(record.getUsername()).size() == 0) {
|
114
|
if (userInfoMapper.selectUserExist(record.getUsername()).size() == 0) {
|
115
|
- return new ResultJson<>("400", "该用户信息,不存在");
|
115
|
+ return new ResultJson<>("400", "该MQ用户信息,不存在");
|
116
|
}
|
116
|
}
|
117
|
if (userInfoMapper.selectByBusQueue(record).size() == 0) {
|
117
|
if (userInfoMapper.selectByBusQueue(record).size() == 0) {
|
118
|
- return new ResultJson<>("400", "该用户关系,不存在");
|
118
|
+ return new ResultJson<>("400", "该MQ用户关系,不存在");
|
119
|
}
|
119
|
}
|
120
|
// 设置id
|
120
|
// 设置id
|
121
|
record.setId(IdUtils.generateId());
|
121
|
record.setId(IdUtils.generateId());
|