fix
This commit is contained in:
@@ -198,6 +198,9 @@ public class PlayClerkUserInfoServiceImpl extends ServiceImpl<PlayClerkUserInfoM
|
|||||||
if (StrUtil.isNotBlank(vo.getRecommendationState())) {
|
if (StrUtil.isNotBlank(vo.getRecommendationState())) {
|
||||||
lambdaQueryWrapper.eq(PlayClerkUserInfoEntity::getRecommendationState, vo.getRecommendationState());
|
lambdaQueryWrapper.eq(PlayClerkUserInfoEntity::getRecommendationState, vo.getRecommendationState());
|
||||||
}
|
}
|
||||||
|
if (StrUtil.isNotBlank(vo.getOnboardingState())) {
|
||||||
|
lambdaQueryWrapper.eq(PlayClerkUserInfoEntity::getOnboardingState, vo.getOnboardingState());
|
||||||
|
}
|
||||||
return this.baseMapper.selectJoinPage(page, PlayClerkUserInfoResultVo.class, lambdaQueryWrapper);
|
return this.baseMapper.selectJoinPage(page, PlayClerkUserInfoResultVo.class, lambdaQueryWrapper);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,11 @@ public class PlayCommodityInfoServiceImpl extends ServiceImpl<PlayCommodityInfoM
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PlayCommodityInfoVo queryCommodityInfo(String id) {
|
public PlayCommodityInfoVo queryCommodityInfo(String id) {
|
||||||
return this.baseMapper.queryCommodityInfo(id);
|
PlayCommodityInfoVo vo = this.baseMapper.queryCommodityInfo(id);
|
||||||
|
if (vo == null) {
|
||||||
|
throw new CustomException("服务项目不存在");
|
||||||
|
}
|
||||||
|
return vo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -125,6 +125,11 @@ public class PlayClerkUserLoginResponseVo {
|
|||||||
*/
|
*/
|
||||||
private boolean clerkAllowEdit = true;
|
private boolean clerkAllowEdit = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在职状态(1:在职,0:离职)
|
||||||
|
*/
|
||||||
|
private String onboardingState = "1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 服务项目
|
* 服务项目
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -54,6 +54,11 @@ public class PlayClerkUserInfoQueryVo extends BasePageEntity {
|
|||||||
*/
|
*/
|
||||||
private String clerkState = "1";
|
private String clerkState = "1";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在职状态(1:在职,0:离职)
|
||||||
|
*/
|
||||||
|
private String onboardingState = "1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 手机号码
|
* 手机号码
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user