mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
Merge branch 'feature/vo-optimize' of https://gitee.com/zhijiantianya/ruoyi-vue-pro into feature/sub-table
This commit is contained in:
commit
7e6b084f77
@ -15,6 +15,13 @@ public class PageParam implements Serializable {
|
|||||||
private static final Integer PAGE_NO = 1;
|
private static final Integer PAGE_NO = 1;
|
||||||
private static final Integer PAGE_SIZE = 10;
|
private static final Integer PAGE_SIZE = 10;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 每页条数 - 不分页
|
||||||
|
*
|
||||||
|
* 例如说,导出接口,可以设置 {@link #pageSize} 为 -1 不分页,查询所有数据。
|
||||||
|
*/
|
||||||
|
public static final Integer PAGE_SIZE_NONE = -1;
|
||||||
|
|
||||||
@Schema(description = "页码,从 1 开始", requiredMode = Schema.RequiredMode.REQUIRED,example = "1")
|
@Schema(description = "页码,从 1 开始", requiredMode = Schema.RequiredMode.REQUIRED,example = "1")
|
||||||
@NotNull(message = "页码不能为空")
|
@NotNull(message = "页码不能为空")
|
||||||
@Min(value = 1, message = "页码最小值为 1")
|
@Min(value = 1, message = "页码最小值为 1")
|
||||||
|
@ -0,0 +1,37 @@
|
|||||||
|
package cn.iocoder.yudao.framework.common.util.object;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.collection.CollectionUtils;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bean 工具类
|
||||||
|
*
|
||||||
|
* 1. 默认使用 {@link cn.hutool.core.bean.BeanUtil} 作为实现类,虽然不同 bean 工具的性能有差别,但是对绝大多数同学的项目,不用在意这点性能
|
||||||
|
* 2. 针对复杂的对象转换,可以搜参考 AuthConvert 实现,通过 mapstruct + default 配合实现
|
||||||
|
*
|
||||||
|
* @author 芋道源码
|
||||||
|
*/
|
||||||
|
public class BeanUtils {
|
||||||
|
|
||||||
|
public static <T> T toBean(Object source, Class<T> targetClass) {
|
||||||
|
return BeanUtil.toBean(source, targetClass);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <S, T> List<T> toBean(List<S> source, Class<T> targetType) {
|
||||||
|
if (source == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return CollectionUtils.convertList(source, s -> toBean(s, targetType));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static <S, T> PageResult<T> toBean(PageResult<S> source, Class<T> targetType) {
|
||||||
|
if (source == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return new PageResult<>(toBean(source.getList(), targetType), source.getTotal());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -26,6 +26,12 @@ import java.util.List;
|
|||||||
public interface BaseMapperX<T> extends MPJBaseMapper<T> {
|
public interface BaseMapperX<T> extends MPJBaseMapper<T> {
|
||||||
|
|
||||||
default PageResult<T> selectPage(PageParam pageParam, @Param("ew") Wrapper<T> queryWrapper) {
|
default PageResult<T> selectPage(PageParam pageParam, @Param("ew") Wrapper<T> queryWrapper) {
|
||||||
|
// 特殊:不分页,直接查询全部
|
||||||
|
if (PageParam.PAGE_SIZE_NONE.equals(pageParam.getPageNo())) {
|
||||||
|
List<T> list = selectList(queryWrapper);
|
||||||
|
return new PageResult<>(list, (long) list.size());
|
||||||
|
}
|
||||||
|
|
||||||
// MyBatis Plus 查询
|
// MyBatis Plus 查询
|
||||||
IPage<T> mpPage = MyBatisUtils.buildPage(pageParam);
|
IPage<T> mpPage = MyBatisUtils.buildPage(pageParam);
|
||||||
selectPage(mpPage, queryWrapper);
|
selectPage(mpPage, queryWrapper);
|
||||||
|
@ -2,16 +2,19 @@ package cn.iocoder.yudao.module.system.controller.admin.dept;
|
|||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
||||||
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
||||||
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.*;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
||||||
import cn.iocoder.yudao.module.system.convert.dept.PostConvert;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostSaveReqVO;
|
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostRespVO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||||
import cn.iocoder.yudao.module.system.service.dept.PostService;
|
import cn.iocoder.yudao.module.system.service.dept.PostService;
|
||||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
||||||
import io.swagger.v3.oas.annotations.Parameter;
|
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
import io.swagger.v3.oas.annotations.Parameter;
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.validation.annotation.Validated;
|
import org.springframework.validation.annotation.Validated;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
@ -39,16 +42,16 @@ public class PostController {
|
|||||||
@PostMapping("/create")
|
@PostMapping("/create")
|
||||||
@Operation(summary = "创建岗位")
|
@Operation(summary = "创建岗位")
|
||||||
@PreAuthorize("@ss.hasPermission('system:post:create')")
|
@PreAuthorize("@ss.hasPermission('system:post:create')")
|
||||||
public CommonResult<Long> createPost(@Valid @RequestBody PostCreateReqVO reqVO) {
|
public CommonResult<Long> createPost(@Valid @RequestBody PostSaveReqVO createReqVO) {
|
||||||
Long postId = postService.createPost(reqVO);
|
Long postId = postService.createPost(createReqVO);
|
||||||
return success(postId);
|
return success(postId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@PutMapping("/update")
|
@PutMapping("/update")
|
||||||
@Operation(summary = "修改岗位")
|
@Operation(summary = "修改岗位")
|
||||||
@PreAuthorize("@ss.hasPermission('system:post:update')")
|
@PreAuthorize("@ss.hasPermission('system:post:update')")
|
||||||
public CommonResult<Boolean> updatePost(@Valid @RequestBody PostUpdateReqVO reqVO) {
|
public CommonResult<Boolean> updatePost(@Valid @RequestBody PostSaveReqVO updateReqVO) {
|
||||||
postService.updatePost(reqVO);
|
postService.updatePost(updateReqVO);
|
||||||
return success(true);
|
return success(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -65,35 +68,38 @@ public class PostController {
|
|||||||
@Parameter(name = "id", description = "岗位编号", required = true, example = "1024")
|
@Parameter(name = "id", description = "岗位编号", required = true, example = "1024")
|
||||||
@PreAuthorize("@ss.hasPermission('system:post:query')")
|
@PreAuthorize("@ss.hasPermission('system:post:query')")
|
||||||
public CommonResult<PostRespVO> getPost(@RequestParam("id") Long id) {
|
public CommonResult<PostRespVO> getPost(@RequestParam("id") Long id) {
|
||||||
return success(PostConvert.INSTANCE.convert(postService.getPost(id)));
|
PostDO post = postService.getPost(id);
|
||||||
|
return success(BeanUtils.toBean(post, PostRespVO.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/list-all-simple")
|
@GetMapping("/list-all-simple")
|
||||||
@Operation(summary = "获取岗位精简信息列表", description = "只包含被开启的岗位,主要用于前端的下拉选项")
|
@Operation(summary = "获取岗位全列表", description = "只包含被开启的岗位,主要用于前端的下拉选项")
|
||||||
public CommonResult<List<PostSimpleRespVO>> getSimplePostList() {
|
public CommonResult<List<PostRespVO>> getSimplePostList() {
|
||||||
// 获得岗位列表,只要开启状态的
|
// 获得岗位列表,只要开启状态的
|
||||||
List<PostDO> list = postService.getPostList(null, Collections.singleton(CommonStatusEnum.ENABLE.getStatus()));
|
List<PostDO> list = postService.getPostList(null, Collections.singleton(CommonStatusEnum.ENABLE.getStatus()));
|
||||||
// 排序后,返回给前端
|
// 排序后,返回给前端
|
||||||
list.sort(Comparator.comparing(PostDO::getSort));
|
list.sort(Comparator.comparing(PostDO::getSort));
|
||||||
return success(PostConvert.INSTANCE.convertList02(list));
|
return success(BeanUtils.toBean(list, PostRespVO.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/page")
|
@GetMapping("/page")
|
||||||
@Operation(summary = "获得岗位分页列表")
|
@Operation(summary = "获得岗位分页列表")
|
||||||
@PreAuthorize("@ss.hasPermission('system:post:query')")
|
@PreAuthorize("@ss.hasPermission('system:post:query')")
|
||||||
public CommonResult<PageResult<PostRespVO>> getPostPage(@Validated PostPageReqVO reqVO) {
|
public CommonResult<PageResult<PostRespVO>> getPostPage(@Validated PostPageReqVO pageReqVO) {
|
||||||
return success(PostConvert.INSTANCE.convertPage(postService.getPostPage(reqVO)));
|
PageResult<PostDO> pageResult = postService.getPostPage(pageReqVO);
|
||||||
|
return success(BeanUtils.toBean(pageResult, PostRespVO.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/export")
|
@GetMapping("/export")
|
||||||
@Operation(summary = "岗位管理")
|
@Operation(summary = "岗位管理")
|
||||||
@PreAuthorize("@ss.hasPermission('system:post:export')")
|
@PreAuthorize("@ss.hasPermission('system:post:export')")
|
||||||
@OperateLog(type = EXPORT)
|
@OperateLog(type = EXPORT)
|
||||||
public void export(HttpServletResponse response, @Validated PostExportReqVO reqVO) throws IOException {
|
public void export(HttpServletResponse response, @Validated PostPageReqVO reqVO) throws IOException {
|
||||||
List<PostDO> posts = postService.getPostList(reqVO);
|
reqVO.setPageSize(PageParam.PAGE_SIZE_NONE);
|
||||||
List<PostExcelVO> data = PostConvert.INSTANCE.convertList03(posts);
|
List<PostDO> list = postService.getPostPage(reqVO).getList();
|
||||||
// 输出
|
// 输出
|
||||||
ExcelUtils.write(response, "岗位数据.xls", "岗位列表", PostExcelVO.class, data);
|
ExcelUtils.write(response, "岗位数据.xls", "岗位列表", PostRespVO.class,
|
||||||
|
BeanUtils.toBean(list, PostRespVO.class));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位创建 Request VO")
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public class PostCreateReqVO extends PostBaseVO {
|
|
||||||
}
|
|
@ -1,31 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
|
|
||||||
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
|
|
||||||
import cn.iocoder.yudao.module.system.enums.DictTypeConstants;
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 岗位 Excel 导出响应 VO
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class PostExcelVO {
|
|
||||||
|
|
||||||
@ExcelProperty("岗位序号")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@ExcelProperty("岗位编码")
|
|
||||||
private String code;
|
|
||||||
|
|
||||||
@ExcelProperty("岗位名称")
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
@ExcelProperty("岗位排序")
|
|
||||||
private Integer sort;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "状态", converter = DictConvert.class)
|
|
||||||
@DictFormat(DictTypeConstants.COMMON_STATUS)
|
|
||||||
private String status;
|
|
||||||
|
|
||||||
}
|
|
@ -1,19 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位导出 Request VO,参数和 PostExcelVO 是一致的")
|
|
||||||
@Data
|
|
||||||
public class PostExportReqVO {
|
|
||||||
|
|
||||||
@Schema(description = "岗位编码,模糊匹配", example = "yudao")
|
|
||||||
private String code;
|
|
||||||
|
|
||||||
@Schema(description = "岗位名称,模糊匹配", example = "芋道")
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
@Schema(description = "展示状态,参见 CommonStatusEnum 枚举类", example = "1")
|
|
||||||
private Integer status;
|
|
||||||
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位列表 Request VO")
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public class PostListReqVO extends PostBaseVO {
|
|
||||||
|
|
||||||
@Schema(description = "岗位名称,模糊匹配", example = "芋道")
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
@Schema(description = "展示状态,参见 CommonStatusEnum 枚举类", example = "1")
|
|
||||||
private Integer status;
|
|
||||||
|
|
||||||
}
|
|
@ -1,20 +1,41 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
|
||||||
|
import cn.iocoder.yudao.module.system.enums.DictTypeConstants;
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位信息 Response VO")
|
@Schema(description = "管理后台 - 岗位信息 Response VO")
|
||||||
@Data
|
@Data
|
||||||
@EqualsAndHashCode(callSuper = true)
|
public class PostRespVO {
|
||||||
public class PostRespVO extends PostBaseVO {
|
|
||||||
|
|
||||||
@Schema(description = "岗位序号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@Schema(description = "岗位序号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||||
|
@ExcelProperty("岗位序号")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "时间戳格式")
|
@Schema(description = "岗位名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "小土豆")
|
||||||
|
@ExcelProperty("岗位名称")
|
||||||
|
private String name;
|
||||||
|
|
||||||
|
@Schema(description = "岗位编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
||||||
|
@ExcelProperty("岗位编码")
|
||||||
|
private String code;
|
||||||
|
|
||||||
|
@Schema(description = "显示顺序不能为空", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||||
|
@ExcelProperty("岗位排序")
|
||||||
|
private Integer sort;
|
||||||
|
|
||||||
|
@Schema(description = "状态,参见 CommonStatusEnum 枚举类", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
|
@DictFormat(DictTypeConstants.COMMON_STATUS)
|
||||||
|
private Integer status;
|
||||||
|
|
||||||
|
@Schema(description = "备注", example = "快乐的备注")
|
||||||
|
private String remark;
|
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
||||||
private LocalDateTime createTime;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
|
import cn.iocoder.yudao.framework.common.validation.InEnum;
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@ -6,16 +9,16 @@ import javax.validation.constraints.NotBlank;
|
|||||||
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.NotNull;
|
||||||
import javax.validation.constraints.Size;
|
import javax.validation.constraints.Size;
|
||||||
|
|
||||||
/**
|
@Schema(description = "管理后台 - 岗位创建/修改 Request VO")
|
||||||
* 岗位 Base VO,提供给添加、修改、详细的子 VO 使用
|
|
||||||
* 如果子 VO 存在差异的字段,请不要添加到这里,影响 Swagger 文档生成
|
|
||||||
*/
|
|
||||||
@Data
|
@Data
|
||||||
public class PostBaseVO {
|
public class PostSaveReqVO {
|
||||||
|
|
||||||
@Schema(description = "岗位名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "小博主")
|
@Schema(description = "岗位编号", example = "1024")
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
@Schema(description = "岗位名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "小土豆")
|
||||||
@NotBlank(message = "岗位名称不能为空")
|
@NotBlank(message = "岗位名称不能为空")
|
||||||
@Size(max = 50, message = "岗位名称长度不能超过50个字符")
|
@Size(max = 50, message = "岗位名称长度不能超过 50 个字符")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
@Schema(description = "岗位编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
@Schema(description = "岗位编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "yudao")
|
||||||
@ -27,7 +30,8 @@ public class PostBaseVO {
|
|||||||
@NotNull(message = "显示顺序不能为空")
|
@NotNull(message = "显示顺序不能为空")
|
||||||
private Integer sort;
|
private Integer sort;
|
||||||
|
|
||||||
@Schema(description = "状态,参见 CommonStatusEnum 枚举类", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
||||||
|
@InEnum(CommonStatusEnum.class)
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
@Schema(description = "备注", example = "快乐的备注")
|
@Schema(description = "备注", example = "快乐的备注")
|
@ -1,20 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位精简信息 Response VO")
|
|
||||||
@Data
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class PostSimpleRespVO {
|
|
||||||
|
|
||||||
@Schema(description = "岗位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
@Schema(description = "岗位名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
|
|
||||||
private String name;
|
|
||||||
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
|
|
||||||
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.EqualsAndHashCode;
|
|
||||||
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
|
|
||||||
@Schema(description = "管理后台 - 岗位更新 Request VO")
|
|
||||||
@Data
|
|
||||||
@EqualsAndHashCode(callSuper = true)
|
|
||||||
public class PostUpdateReqVO extends PostBaseVO {
|
|
||||||
|
|
||||||
@Schema(description = "岗位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
|
||||||
@NotNull(message = "岗位编号不能为空")
|
|
||||||
private Long id;
|
|
||||||
|
|
||||||
}
|
|
@ -1,28 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.convert.dept;
|
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.*;
|
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
|
||||||
import org.mapstruct.Mapper;
|
|
||||||
import org.mapstruct.factory.Mappers;
|
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Mapper
|
|
||||||
public interface PostConvert {
|
|
||||||
|
|
||||||
PostConvert INSTANCE = Mappers.getMapper(PostConvert.class);
|
|
||||||
|
|
||||||
List<PostSimpleRespVO> convertList02(List<PostDO> list);
|
|
||||||
|
|
||||||
PageResult<PostRespVO> convertPage(PageResult<PostDO> page);
|
|
||||||
|
|
||||||
PostRespVO convert(PostDO id);
|
|
||||||
|
|
||||||
PostDO convert(PostCreateReqVO bean);
|
|
||||||
|
|
||||||
PostDO convert(PostUpdateReqVO reqVO);
|
|
||||||
|
|
||||||
List<PostExcelVO> convertList03(List<PostDO> list);
|
|
||||||
|
|
||||||
}
|
|
@ -3,7 +3,6 @@ package cn.iocoder.yudao.module.system.dal.mysql.dept;
|
|||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||||
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostExportReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
@ -28,13 +27,6 @@ public interface PostMapper extends BaseMapperX<PostDO> {
|
|||||||
.orderByDesc(PostDO::getId));
|
.orderByDesc(PostDO::getId));
|
||||||
}
|
}
|
||||||
|
|
||||||
default List<PostDO> selectList(PostExportReqVO reqVO) {
|
|
||||||
return selectList(new LambdaQueryWrapperX<PostDO>()
|
|
||||||
.likeIfPresent(PostDO::getCode, reqVO.getCode())
|
|
||||||
.likeIfPresent(PostDO::getName, reqVO.getName())
|
|
||||||
.eqIfPresent(PostDO::getStatus, reqVO.getStatus()));
|
|
||||||
}
|
|
||||||
|
|
||||||
default PostDO selectByName(String name) {
|
default PostDO selectByName(String name) {
|
||||||
return selectOne(PostDO::getName, name);
|
return selectOne(PostDO::getName, name);
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,8 @@ package cn.iocoder.yudao.module.system.service.dept;
|
|||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostCreateReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostExportReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostUpdateReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostSaveReqVO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||||
import org.springframework.lang.Nullable;
|
import org.springframework.lang.Nullable;
|
||||||
|
|
||||||
@ -24,17 +22,17 @@ public interface PostService {
|
|||||||
/**
|
/**
|
||||||
* 创建岗位
|
* 创建岗位
|
||||||
*
|
*
|
||||||
* @param reqVO 岗位信息
|
* @param createReqVO 岗位信息
|
||||||
* @return 岗位编号
|
* @return 岗位编号
|
||||||
*/
|
*/
|
||||||
Long createPost(PostCreateReqVO reqVO);
|
Long createPost(PostSaveReqVO createReqVO);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新岗位
|
* 更新岗位
|
||||||
*
|
*
|
||||||
* @param reqVO 岗位信息
|
* @param updateReqVO 岗位信息
|
||||||
*/
|
*/
|
||||||
void updatePost(PostUpdateReqVO reqVO);
|
void updatePost(PostSaveReqVO updateReqVO);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除岗位信息
|
* 删除岗位信息
|
||||||
@ -70,14 +68,6 @@ public interface PostService {
|
|||||||
*/
|
*/
|
||||||
PageResult<PostDO> getPostPage(PostPageReqVO reqVO);
|
PageResult<PostDO> getPostPage(PostPageReqVO reqVO);
|
||||||
|
|
||||||
/**
|
|
||||||
* 获得岗位列表
|
|
||||||
*
|
|
||||||
* @param reqVO 查询条件
|
|
||||||
* @return 部门列表
|
|
||||||
*/
|
|
||||||
List<PostDO> getPostList(PostExportReqVO reqVO);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获得岗位信息
|
* 获得岗位信息
|
||||||
*
|
*
|
||||||
|
@ -3,11 +3,9 @@ package cn.iocoder.yudao.module.system.service.dept;
|
|||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostCreateReqVO;
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostExportReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostUpdateReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostSaveReqVO;
|
||||||
import cn.iocoder.yudao.module.system.convert.dept.PostConvert;
|
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||||
import cn.iocoder.yudao.module.system.dal.mysql.dept.PostMapper;
|
import cn.iocoder.yudao.module.system.dal.mysql.dept.PostMapper;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
@ -35,23 +33,23 @@ public class PostServiceImpl implements PostService {
|
|||||||
private PostMapper postMapper;
|
private PostMapper postMapper;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Long createPost(PostCreateReqVO reqVO) {
|
public Long createPost(PostSaveReqVO createReqVO) {
|
||||||
// 校验正确性
|
// 校验正确性
|
||||||
validatePostForCreateOrUpdate(null, reqVO.getName(), reqVO.getCode());
|
validatePostForCreateOrUpdate(null, createReqVO.getName(), createReqVO.getCode());
|
||||||
|
|
||||||
// 插入岗位
|
// 插入岗位
|
||||||
PostDO post = PostConvert.INSTANCE.convert(reqVO);
|
PostDO post = BeanUtils.toBean(createReqVO, PostDO.class);
|
||||||
postMapper.insert(post);
|
postMapper.insert(post);
|
||||||
return post.getId();
|
return post.getId();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updatePost(PostUpdateReqVO reqVO) {
|
public void updatePost(PostSaveReqVO updateReqVO) {
|
||||||
// 校验正确性
|
// 校验正确性
|
||||||
validatePostForCreateOrUpdate(reqVO.getId(), reqVO.getName(), reqVO.getCode());
|
validatePostForCreateOrUpdate(updateReqVO.getId(), updateReqVO.getName(), updateReqVO.getCode());
|
||||||
|
|
||||||
// 更新岗位
|
// 更新岗位
|
||||||
PostDO updateObj = PostConvert.INSTANCE.convert(reqVO);
|
PostDO updateObj = BeanUtils.toBean(updateReqVO, PostDO.class);
|
||||||
postMapper.updateById(updateObj);
|
postMapper.updateById(updateObj);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,11 +117,6 @@ public class PostServiceImpl implements PostService {
|
|||||||
return postMapper.selectPage(reqVO);
|
return postMapper.selectPage(reqVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<PostDO> getPostList(PostExportReqVO reqVO) {
|
|
||||||
return postMapper.selectList(reqVO);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PostDO getPost(Long id) {
|
public PostDO getPost(Long id) {
|
||||||
return postMapper.selectById(id);
|
return postMapper.selectById(id);
|
||||||
|
@ -4,10 +4,8 @@ import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum;
|
|||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.framework.common.util.collection.ArrayUtils;
|
import cn.iocoder.yudao.framework.common.util.collection.ArrayUtils;
|
||||||
import cn.iocoder.yudao.framework.test.core.ut.BaseDbUnitTest;
|
import cn.iocoder.yudao.framework.test.core.ut.BaseDbUnitTest;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostCreateReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostExportReqVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostPageReqVO;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostUpdateReqVO;
|
import cn.iocoder.yudao.module.system.controller.admin.dept.vo.post.PostSaveReqVO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.PostDO;
|
||||||
import cn.iocoder.yudao.module.system.dal.mysql.dept.PostMapper;
|
import cn.iocoder.yudao.module.system.dal.mysql.dept.PostMapper;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
@ -44,7 +42,7 @@ public class PostServiceImplTest extends BaseDbUnitTest {
|
|||||||
@Test
|
@Test
|
||||||
public void testCreatePost_success() {
|
public void testCreatePost_success() {
|
||||||
// 准备参数
|
// 准备参数
|
||||||
PostCreateReqVO reqVO = randomPojo(PostCreateReqVO.class,
|
PostSaveReqVO reqVO = randomPojo(PostSaveReqVO.class,
|
||||||
o -> o.setStatus(randomEle(CommonStatusEnum.values()).getStatus()));
|
o -> o.setStatus(randomEle(CommonStatusEnum.values()).getStatus()));
|
||||||
// 调用
|
// 调用
|
||||||
Long postId = postService.createPost(reqVO);
|
Long postId = postService.createPost(reqVO);
|
||||||
@ -62,7 +60,7 @@ public class PostServiceImplTest extends BaseDbUnitTest {
|
|||||||
PostDO postDO = randomPostDO();
|
PostDO postDO = randomPostDO();
|
||||||
postMapper.insert(postDO);// @Sql: 先插入出一条存在的数据
|
postMapper.insert(postDO);// @Sql: 先插入出一条存在的数据
|
||||||
// 准备参数
|
// 准备参数
|
||||||
PostUpdateReqVO reqVO = randomPojo(PostUpdateReqVO.class, o -> {
|
PostSaveReqVO reqVO = randomPojo(PostSaveReqVO.class, o -> {
|
||||||
// 设置更新的 ID
|
// 设置更新的 ID
|
||||||
o.setId(postDO.getId());
|
o.setId(postDO.getId());
|
||||||
o.setStatus(randomEle(CommonStatusEnum.values()).getStatus());
|
o.setStatus(randomEle(CommonStatusEnum.values()).getStatus());
|
||||||
@ -103,7 +101,7 @@ public class PostServiceImplTest extends BaseDbUnitTest {
|
|||||||
PostDO postDO = randomPostDO();
|
PostDO postDO = randomPostDO();
|
||||||
postMapper.insert(postDO);// @Sql: 先插入出一条存在的数据
|
postMapper.insert(postDO);// @Sql: 先插入出一条存在的数据
|
||||||
// 准备参数
|
// 准备参数
|
||||||
PostCreateReqVO reqVO = randomPojo(PostCreateReqVO.class,
|
PostSaveReqVO reqVO = randomPojo(PostSaveReqVO.class,
|
||||||
// 模拟 name 重复
|
// 模拟 name 重复
|
||||||
o -> o.setName(postDO.getName()));
|
o -> o.setName(postDO.getName()));
|
||||||
assertServiceException(() -> postService.createPost(reqVO), POST_NAME_DUPLICATE);
|
assertServiceException(() -> postService.createPost(reqVO), POST_NAME_DUPLICATE);
|
||||||
@ -118,7 +116,7 @@ public class PostServiceImplTest extends BaseDbUnitTest {
|
|||||||
PostDO codePostDO = randomPostDO();
|
PostDO codePostDO = randomPostDO();
|
||||||
postMapper.insert(codePostDO);
|
postMapper.insert(codePostDO);
|
||||||
// 准备参数
|
// 准备参数
|
||||||
PostUpdateReqVO reqVO = randomPojo(PostUpdateReqVO.class, o -> {
|
PostSaveReqVO reqVO = randomPojo(PostSaveReqVO.class, o -> {
|
||||||
// 设置更新的 ID
|
// 设置更新的 ID
|
||||||
o.setId(postDO.getId());
|
o.setId(postDO.getId());
|
||||||
// 模拟 code 重复
|
// 模拟 code 重复
|
||||||
@ -154,30 +152,6 @@ public class PostServiceImplTest extends BaseDbUnitTest {
|
|||||||
assertPojoEquals(postDO, pageResult.getList().get(0));
|
assertPojoEquals(postDO, pageResult.getList().get(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testGetPostList_export() {
|
|
||||||
// mock 数据
|
|
||||||
PostDO postDO = randomPojo(PostDO.class, o -> {
|
|
||||||
o.setName("码仔");
|
|
||||||
o.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
|
||||||
});
|
|
||||||
postMapper.insert(postDO);
|
|
||||||
// 测试 name 不匹配
|
|
||||||
postMapper.insert(cloneIgnoreId(postDO, o -> o.setName("程序员")));
|
|
||||||
// 测试 status 不匹配
|
|
||||||
postMapper.insert(cloneIgnoreId(postDO, o -> o.setStatus(CommonStatusEnum.DISABLE.getStatus())));
|
|
||||||
// 准备参数
|
|
||||||
PostExportReqVO reqVO = new PostExportReqVO();
|
|
||||||
reqVO.setName("码");
|
|
||||||
reqVO.setStatus(CommonStatusEnum.ENABLE.getStatus());
|
|
||||||
|
|
||||||
// 调用
|
|
||||||
List<PostDO> list = postService.getPostList(reqVO);
|
|
||||||
// 断言
|
|
||||||
assertEquals(1, list.size());
|
|
||||||
assertPojoEquals(postDO, list.get(0));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testGetPostList() {
|
public void testGetPostList() {
|
||||||
// mock 数据
|
// mock 数据
|
||||||
|
Loading…
Reference in New Issue
Block a user