| | |
| | | import com.dy.pipIrrBase.result.SystemResultCode; |
| | | import com.dy.pipIrrGlobal.pojoBa.BaUser; |
| | | import com.dy.pipIrrGlobal.util.Constant; |
| | | import com.dy.pipIrrGlobal.voBa.VoSimpleUser; |
| | | import com.dy.pipIrrGlobal.voBa.VoUserInfo; |
| | | import com.mysql.cj.util.StringUtils; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | |
| | | return BaseResponseUtils.buildException(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 获取简单用户数据列表,数据列表查询条件中使用 |
| | | * @return |
| | | */ |
| | | @GetMapping(path = "simple_users") |
| | | @SsoAop() |
| | | public BaseResponse<List<VoSimpleUser>> getSimpleUsers(){ |
| | | try { |
| | | return BaseResponseUtils.buildSuccess(sv.getSimpleUsers()); |
| | | } catch (Exception e) { |
| | | log.error("查询简单用户信息异常", e); |
| | | return BaseResponseUtils.buildException(e.getMessage()); |
| | | } |
| | | } |
| | | } |