|
|
@@ -447,7 +447,8 @@ public class StoreStaffConfigServiceImpl implements StoreStaffConfigService {
|
|
|
|
|
|
// 构建查询条件
|
|
|
LambdaQueryWrapper<StoreStaffConfig> queryWrapper = buildStaffListQueryWrapper(storeId, status, staffPosition);
|
|
|
-
|
|
|
+ // 只查询上线的员工
|
|
|
+ queryWrapper.eq(StoreStaffConfig::getOnlineStatus,"0");
|
|
|
// 执行查询
|
|
|
IPage<StoreStaffConfig> result = storeStaffConfigMapper.selectPage(staffPage, queryWrapper);
|
|
|
|