|
@@ -57,6 +57,7 @@ public class LawyerUserServiceImpl extends ServiceImpl<LawyerUserMapper, LawyerU
|
|
|
private final OrderReviewMapper orderReviewMapper;
|
|
private final OrderReviewMapper orderReviewMapper;
|
|
|
private final LifeNoticeMapper lifeNoticeMapper;
|
|
private final LifeNoticeMapper lifeNoticeMapper;
|
|
|
private final LawyerLicenseVerifyUtil lawyerLicenseVerifyUtil;
|
|
private final LawyerLicenseVerifyUtil lawyerLicenseVerifyUtil;
|
|
|
|
|
+ private final StoreDictionaryMapper storeDictionaryMapper;
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public R<IPage<LawyerUser>> getLawyerUserList(int pageNum, int pageSize, String name, String phone, Integer status) {
|
|
public R<IPage<LawyerUser>> getLawyerUserList(int pageNum, int pageSize, String name, String phone, Integer status) {
|
|
@@ -983,6 +984,22 @@ public class LawyerUserServiceImpl extends ServiceImpl<LawyerUserMapper, LawyerU
|
|
|
return R.data(result);
|
|
return R.data(result);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询字典值
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param dictType 字典类型
|
|
|
|
|
+ * @return list
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<StoreDictionary> getDict(String dictType) {
|
|
|
|
|
+ LambdaQueryWrapper<StoreDictionary> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
|
|
+ queryWrapper.eq(StoreDictionary::getTypeName, dictType);
|
|
|
|
|
+ queryWrapper.eq(StoreDictionary::getDeleteFlag, 0);
|
|
|
|
|
+ return storeDictionaryMapper.selectList(queryWrapper);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 将LawyerUserVo转换为LawyerUserExcelVo
|
|
* 将LawyerUserVo转换为LawyerUserExcelVo
|
|
|
*
|
|
*
|