Merge remote-tracking branch 'origin/main'
commit
f5362b5c19
@ -0,0 +1,102 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow;
|
||||
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import javax.annotation.Resource;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import io.swagger.v3.oas.annotations.Parameter;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
|
||||
import javax.validation.constraints.*;
|
||||
import javax.validation.*;
|
||||
import javax.servlet.http.*;
|
||||
import java.util.*;
|
||||
import java.io.IOException;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||
|
||||
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
||||
|
||||
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
||||
import static cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum.*;
|
||||
|
||||
import cn.iocoder.yudao.module.archives.controller.admin.flow.vo.*;
|
||||
import cn.iocoder.yudao.module.archives.dal.dataobject.flow.FlowDO;
|
||||
import cn.iocoder.yudao.module.archives.convert.flow.FlowConvert;
|
||||
import cn.iocoder.yudao.module.archives.service.flow.FlowService;
|
||||
|
||||
@Tag(name = "管理后台 - 审批流程")
|
||||
@RestController
|
||||
@RequestMapping("/archives/flow")
|
||||
@Validated
|
||||
public class FlowController {
|
||||
|
||||
@Resource
|
||||
private FlowService flowService;
|
||||
|
||||
@PostMapping("/create")
|
||||
@Operation(summary = "创建审批流程")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:create')")
|
||||
public CommonResult<Long> createFlow(@Valid @RequestBody FlowCreateReqVO createReqVO) {
|
||||
return success(flowService.createFlow(createReqVO));
|
||||
}
|
||||
|
||||
@PutMapping("/update")
|
||||
@Operation(summary = "更新审批流程")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:update')")
|
||||
public CommonResult<Boolean> updateFlow(@Valid @RequestBody FlowUpdateReqVO updateReqVO) {
|
||||
flowService.updateFlow(updateReqVO);
|
||||
return success(true);
|
||||
}
|
||||
|
||||
@DeleteMapping("/delete")
|
||||
@Operation(summary = "删除审批流程")
|
||||
@Parameter(name = "id", description = "编号", required = true)
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:delete')")
|
||||
public CommonResult<Boolean> deleteFlow(@RequestParam("id") Long id) {
|
||||
flowService.deleteFlow(id);
|
||||
return success(true);
|
||||
}
|
||||
|
||||
@GetMapping("/get")
|
||||
@Operation(summary = "获得审批流程")
|
||||
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:query')")
|
||||
public CommonResult<FlowRespVO> getFlow(@RequestParam("id") Long id) {
|
||||
FlowDO flow = flowService.getFlow(id);
|
||||
return success(FlowConvert.INSTANCE.convert(flow));
|
||||
}
|
||||
|
||||
@GetMapping("/list")
|
||||
@Operation(summary = "获得审批流程列表")
|
||||
@Parameter(name = "ids", description = "编号列表", required = true, example = "1024,2048")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:query')")
|
||||
public CommonResult<List<FlowRespVO>> getFlowList(@RequestParam("ids") Collection<Long> ids) {
|
||||
List<FlowDO> list = flowService.getFlowList(ids);
|
||||
return success(FlowConvert.INSTANCE.convertList(list));
|
||||
}
|
||||
|
||||
@GetMapping("/page")
|
||||
@Operation(summary = "获得审批流程分页")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:query')")
|
||||
public CommonResult<PageResult<FlowRespVO>> getFlowPage(@Valid FlowPageReqVO pageVO) {
|
||||
PageResult<FlowDO> pageResult = flowService.getFlowPage(pageVO);
|
||||
return success(FlowConvert.INSTANCE.convertPage(pageResult));
|
||||
}
|
||||
|
||||
@GetMapping("/export-excel")
|
||||
@Operation(summary = "导出审批流程 Excel")
|
||||
@PreAuthorize("@ss.hasPermission('archives:flow:export')")
|
||||
@OperateLog(type = EXPORT)
|
||||
public void exportFlowExcel(@Valid FlowExportReqVO exportReqVO,
|
||||
HttpServletResponse response) throws IOException {
|
||||
List<FlowDO> list = flowService.getFlowList(exportReqVO);
|
||||
// 导出 Excel
|
||||
List<FlowExcelVO> datas = FlowConvert.INSTANCE.convertList02(list);
|
||||
ExcelUtils.write(response, "审批流程.xls", "数据", FlowExcelVO.class, datas);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow.vo;
|
||||
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import javax.validation.constraints.*;
|
||||
|
||||
@Schema(description = "管理后台 - 审批流程创建 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class FlowCreateReqVO extends FlowBaseVO {
|
||||
|
||||
}
|
@ -0,0 +1,77 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
|
||||
/**
|
||||
* 审批流程 Excel VO
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Data
|
||||
public class FlowExcelVO {
|
||||
|
||||
@ExcelProperty("主键Id")
|
||||
private Long id;
|
||||
|
||||
@ExcelProperty("OA/ERP流程编号")
|
||||
private String flowCode;
|
||||
|
||||
@ExcelProperty("凭证id")
|
||||
private Long voucherId;
|
||||
|
||||
@ExcelProperty("凭证号")
|
||||
private String voucherNum;
|
||||
|
||||
@ExcelProperty("业务id")
|
||||
private Long businessId;
|
||||
|
||||
@ExcelProperty("业务类型")
|
||||
private String businessType;
|
||||
|
||||
@ExcelProperty("创建时间")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@ExcelProperty("业务实体id")
|
||||
private Long companyId;
|
||||
|
||||
@ExcelProperty("业务实体")
|
||||
private String company;
|
||||
|
||||
@ExcelProperty("删除状态")
|
||||
private String delStatus;
|
||||
|
||||
@ExcelProperty("文件后缀")
|
||||
private String suffix;
|
||||
|
||||
@ExcelProperty("文件地址")
|
||||
private String fileUrl;
|
||||
|
||||
@ExcelProperty("绝对路径")
|
||||
private String fileAp;
|
||||
|
||||
@ExcelProperty("流程号")
|
||||
private String flowId;
|
||||
|
||||
@ExcelProperty("摘要")
|
||||
private String note;
|
||||
|
||||
@ExcelProperty("部门id")
|
||||
private Long deptId;
|
||||
|
||||
@ExcelProperty("部门名称")
|
||||
private String deptName;
|
||||
|
||||
@ExcelProperty("归档id")
|
||||
private Long archiveId;
|
||||
|
||||
@ExcelProperty("归档状态")
|
||||
private String archiveState;
|
||||
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow.vo;
|
||||
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
|
||||
@Schema(description = "管理后台 - 审批流程分页 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class FlowPageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "OA/ERP流程编号")
|
||||
private String flowCode;
|
||||
|
||||
@Schema(description = "凭证id", example = "19145")
|
||||
private Long voucherId;
|
||||
|
||||
@Schema(description = "凭证号")
|
||||
private String voucherNum;
|
||||
|
||||
@Schema(description = "业务id", example = "21987")
|
||||
private Long businessId;
|
||||
|
||||
@Schema(description = "业务类型", example = "2")
|
||||
private String businessType;
|
||||
|
||||
@Schema(description = "创建时间")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
private LocalDateTime[] createTime;
|
||||
|
||||
@Schema(description = "业务实体id", example = "8805")
|
||||
private Long companyId;
|
||||
|
||||
@Schema(description = "业务实体")
|
||||
private String company;
|
||||
|
||||
@Schema(description = "删除状态", example = "2")
|
||||
private String delStatus;
|
||||
|
||||
@Schema(description = "文件后缀")
|
||||
private String suffix;
|
||||
|
||||
@Schema(description = "文件地址", example = "https://www.iocoder.cn")
|
||||
private String fileUrl;
|
||||
|
||||
@Schema(description = "绝对路径")
|
||||
private String fileAp;
|
||||
|
||||
@Schema(description = "流程号", example = "13373")
|
||||
private String flowId;
|
||||
|
||||
@Schema(description = "摘要")
|
||||
private String note;
|
||||
|
||||
@Schema(description = "部门id", example = "31515")
|
||||
private Long deptId;
|
||||
|
||||
@Schema(description = "部门名称", example = "张三")
|
||||
private String deptName;
|
||||
|
||||
@Schema(description = "归档id", example = "3820")
|
||||
private Long archiveId;
|
||||
|
||||
@Schema(description = "归档状态")
|
||||
private String archiveState;
|
||||
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Schema(description = "管理后台 - 审批流程 Response VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class FlowRespVO extends FlowBaseVO {
|
||||
|
||||
@Schema(description = "主键Id", requiredMode = Schema.RequiredMode.REQUIRED, example = "3083")
|
||||
private Long id;
|
||||
|
||||
@Schema(description = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package cn.iocoder.yudao.module.archives.controller.admin.flow.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import javax.validation.constraints.*;
|
||||
|
||||
@Schema(description = "管理后台 - 审批流程更新 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class FlowUpdateReqVO extends FlowBaseVO {
|
||||
|
||||
@Schema(description = "主键Id", requiredMode = Schema.RequiredMode.REQUIRED, example = "3083")
|
||||
@NotNull(message = "主键Id不能为空")
|
||||
private Long id;
|
||||
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package cn.iocoder.yudao.module.archives.convert.flow;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
import cn.iocoder.yudao.module.archives.controller.admin.flow.vo.*;
|
||||
import cn.iocoder.yudao.module.archives.dal.dataobject.flow.FlowDO;
|
||||
|
||||
/**
|
||||
* 审批流程 Convert
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Mapper
|
||||
public interface FlowConvert {
|
||||
|
||||
FlowConvert INSTANCE = Mappers.getMapper(FlowConvert.class);
|
||||
|
||||
FlowDO convert(FlowCreateReqVO bean);
|
||||
|
||||
FlowDO convert(FlowUpdateReqVO bean);
|
||||
|
||||
FlowRespVO convert(FlowDO bean);
|
||||
|
||||
List<FlowRespVO> convertList(List<FlowDO> list);
|
||||
|
||||
PageResult<FlowRespVO> convertPage(PageResult<FlowDO> page);
|
||||
|
||||
List<FlowExcelVO> convertList02(List<FlowDO> list);
|
||||
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
package cn.iocoder.yudao.module.archives.dal.dataobject.flow;
|
||||
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
||||
|
||||
/**
|
||||
* 审批流程 DO
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@TableName("archives_flow")
|
||||
@KeySequence("archives_flow_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class FlowDO extends BaseDO {
|
||||
|
||||
/**
|
||||
* 主键Id
|
||||
*/
|
||||
@TableId
|
||||
private Long id;
|
||||
/**
|
||||
* OA/ERP流程编号
|
||||
*/
|
||||
private String flowCode;
|
||||
/**
|
||||
* 凭证id
|
||||
*/
|
||||
private Long voucherId;
|
||||
/**
|
||||
* 凭证号
|
||||
*/
|
||||
private String voucherNum;
|
||||
/**
|
||||
* 业务id
|
||||
*/
|
||||
private Long businessId;
|
||||
/**
|
||||
* 业务类型
|
||||
*/
|
||||
private String businessType;
|
||||
/**
|
||||
* 业务实体id
|
||||
*/
|
||||
private Long companyId;
|
||||
/**
|
||||
* 业务实体
|
||||
*/
|
||||
private String company;
|
||||
/**
|
||||
* 删除状态
|
||||
*/
|
||||
private String delStatus;
|
||||
/**
|
||||
* 文件后缀
|
||||
*/
|
||||
private String suffix;
|
||||
/**
|
||||
* 文件地址
|
||||
*/
|
||||
private String fileUrl;
|
||||
/**
|
||||
* 绝对路径
|
||||
*/
|
||||
private String fileAp;
|
||||
/**
|
||||
* 流程号
|
||||
*/
|
||||
private String flowId;
|
||||
/**
|
||||
* 摘要
|
||||
*/
|
||||
private String note;
|
||||
/**
|
||||
* 部门id
|
||||
*/
|
||||
private Long deptId;
|
||||
/**
|
||||
* 部门名称
|
||||
*/
|
||||
private String deptName;
|
||||
/**
|
||||
* 归档id
|
||||
*/
|
||||
private Long archiveId;
|
||||
/**
|
||||
* 归档状态
|
||||
*/
|
||||
private String archiveState;
|
||||
|
||||
}
|
@ -0,0 +1,66 @@
|
||||
package cn.iocoder.yudao.module.archives.dal.mysql.flow;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||
import cn.iocoder.yudao.module.archives.dal.dataobject.flow.FlowDO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import cn.iocoder.yudao.module.archives.controller.admin.flow.vo.*;
|
||||
|
||||
/**
|
||||
* 审批流程 Mapper
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Mapper
|
||||
public interface FlowMapper extends BaseMapperX<FlowDO> {
|
||||
|
||||
default PageResult<FlowDO> selectPage(FlowPageReqVO reqVO) {
|
||||
return selectPage(reqVO, new LambdaQueryWrapperX<FlowDO>()
|
||||
.eqIfPresent(FlowDO::getFlowCode, reqVO.getFlowCode())
|
||||
.eqIfPresent(FlowDO::getVoucherId, reqVO.getVoucherId())
|
||||
.eqIfPresent(FlowDO::getVoucherNum, reqVO.getVoucherNum())
|
||||
.eqIfPresent(FlowDO::getBusinessId, reqVO.getBusinessId())
|
||||
.eqIfPresent(FlowDO::getBusinessType, reqVO.getBusinessType())
|
||||
.betweenIfPresent(FlowDO::getCreateTime, reqVO.getCreateTime())
|
||||
.eqIfPresent(FlowDO::getCompanyId, reqVO.getCompanyId())
|
||||
.eqIfPresent(FlowDO::getCompany, reqVO.getCompany())
|
||||
.eqIfPresent(FlowDO::getDelStatus, reqVO.getDelStatus())
|
||||
.eqIfPresent(FlowDO::getSuffix, reqVO.getSuffix())
|
||||
.eqIfPresent(FlowDO::getFileUrl, reqVO.getFileUrl())
|
||||
.eqIfPresent(FlowDO::getFileAp, reqVO.getFileAp())
|
||||
.eqIfPresent(FlowDO::getFlowId, reqVO.getFlowId())
|
||||
.eqIfPresent(FlowDO::getNote, reqVO.getNote())
|
||||
.eqIfPresent(FlowDO::getDeptId, reqVO.getDeptId())
|
||||
.likeIfPresent(FlowDO::getDeptName, reqVO.getDeptName())
|
||||
.eqIfPresent(FlowDO::getArchiveId, reqVO.getArchiveId())
|
||||
.eqIfPresent(FlowDO::getArchiveState, reqVO.getArchiveState())
|
||||
.orderByDesc(FlowDO::getId));
|
||||
}
|
||||
|
||||
default List<FlowDO> selectList(FlowExportReqVO reqVO) {
|
||||
return selectList(new LambdaQueryWrapperX<FlowDO>()
|
||||
.eqIfPresent(FlowDO::getFlowCode, reqVO.getFlowCode())
|
||||
.eqIfPresent(FlowDO::getVoucherId, reqVO.getVoucherId())
|
||||
.eqIfPresent(FlowDO::getVoucherNum, reqVO.getVoucherNum())
|
||||
.eqIfPresent(FlowDO::getBusinessId, reqVO.getBusinessId())
|
||||
.eqIfPresent(FlowDO::getBusinessType, reqVO.getBusinessType())
|
||||
.betweenIfPresent(FlowDO::getCreateTime, reqVO.getCreateTime())
|
||||
.eqIfPresent(FlowDO::getCompanyId, reqVO.getCompanyId())
|
||||
.eqIfPresent(FlowDO::getCompany, reqVO.getCompany())
|
||||
.eqIfPresent(FlowDO::getDelStatus, reqVO.getDelStatus())
|
||||
.eqIfPresent(FlowDO::getSuffix, reqVO.getSuffix())
|
||||
.eqIfPresent(FlowDO::getFileUrl, reqVO.getFileUrl())
|
||||
.eqIfPresent(FlowDO::getFileAp, reqVO.getFileAp())
|
||||
.eqIfPresent(FlowDO::getFlowId, reqVO.getFlowId())
|
||||
.eqIfPresent(FlowDO::getNote, reqVO.getNote())
|
||||
.eqIfPresent(FlowDO::getDeptId, reqVO.getDeptId())
|
||||
.likeIfPresent(FlowDO::getDeptName, reqVO.getDeptName())
|
||||
.eqIfPresent(FlowDO::getArchiveId, reqVO.getArchiveId())
|
||||
.eqIfPresent(FlowDO::getArchiveState, reqVO.getArchiveState())
|
||||
.orderByDesc(FlowDO::getId));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
package cn.iocoder.yudao.module.archives.service.flow;
|
||||
|
||||
import java.util.*;
|
||||
import javax.validation.*;
|
||||
import cn.iocoder.yudao.module.archives.controller.admin.flow.vo.*;
|
||||
import cn.iocoder.yudao.module.archives.dal.dataobject.flow.FlowDO;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
/**
|
||||
* 审批流程 Service 接口
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
public interface FlowService {
|
||||
|
||||
/**
|
||||
* 创建审批流程
|
||||
*
|
||||
* @param createReqVO 创建信息
|
||||
* @return 编号
|
||||
*/
|
||||
Long createFlow(@Valid FlowCreateReqVO createReqVO);
|
||||
|
||||
/**
|
||||
* 更新审批流程
|
||||
*
|
||||
* @param updateReqVO 更新信息
|
||||
*/
|
||||
void updateFlow(@Valid FlowUpdateReqVO updateReqVO);
|
||||
|
||||
/**
|
||||
* 删除审批流程
|
||||
*
|
||||
* @param id 编号
|
||||
*/
|
||||
void deleteFlow(Long id);
|
||||
|
||||
/**
|
||||
* 获得审批流程
|
||||
*
|
||||
* @param id 编号
|
||||
* @return 审批流程
|
||||
*/
|
||||
FlowDO getFlow(Long id);
|
||||
|
||||
/**
|
||||
* 获得审批流程列表
|
||||
*
|
||||
* @param ids 编号
|
||||
* @return 审批流程列表
|
||||
*/
|
||||
List<FlowDO> getFlowList(Collection<Long> ids);
|
||||
|
||||
/**
|
||||
* 获得审批流程分页
|
||||
*
|
||||
* @param pageReqVO 分页查询
|
||||
* @return 审批流程分页
|
||||
*/
|
||||
PageResult<FlowDO> getFlowPage(FlowPageReqVO pageReqVO);
|
||||
|
||||
/**
|
||||
* 获得审批流程列表, 用于 Excel 导出
|
||||
*
|
||||
* @param exportReqVO 查询条件
|
||||
* @return 审批流程列表
|
||||
*/
|
||||
List<FlowDO> getFlowList(FlowExportReqVO exportReqVO);
|
||||
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
package cn.iocoder.yudao.module.archives.service.flow;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import javax.annotation.Resource;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
import java.util.*;
|
||||
import cn.iocoder.yudao.module.archives.controller.admin.flow.vo.*;
|
||||
import cn.iocoder.yudao.module.archives.dal.dataobject.flow.FlowDO;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
import cn.iocoder.yudao.module.archives.convert.flow.FlowConvert;
|
||||
import cn.iocoder.yudao.module.archives.dal.mysql.flow.FlowMapper;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||
import static cn.iocoder.yudao.module.archives.enums.ErrorCodeConstants.*;
|
||||
|
||||
/**
|
||||
* 审批流程 Service 实现类
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Service
|
||||
@Validated
|
||||
public class FlowServiceImpl implements FlowService {
|
||||
|
||||
@Resource
|
||||
private FlowMapper flowMapper;
|
||||
|
||||
@Override
|
||||
public Long createFlow(FlowCreateReqVO createReqVO) {
|
||||
// 插入
|
||||
FlowDO flow = FlowConvert.INSTANCE.convert(createReqVO);
|
||||
flowMapper.insert(flow);
|
||||
// 返回
|
||||
return flow.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateFlow(FlowUpdateReqVO updateReqVO) {
|
||||
// 校验存在
|
||||
validateFlowExists(updateReqVO.getId());
|
||||
// 更新
|
||||
FlowDO updateObj = FlowConvert.INSTANCE.convert(updateReqVO);
|
||||
flowMapper.updateById(updateObj);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteFlow(Long id) {
|
||||
// 校验存在
|
||||
validateFlowExists(id);
|
||||
// 删除
|
||||
flowMapper.deleteById(id);
|
||||
}
|
||||
|
||||
private void validateFlowExists(Long id) {
|
||||
if (flowMapper.selectById(id) == null) {
|
||||
throw exception(FLOW_NOT_EXISTS);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public FlowDO getFlow(Long id) {
|
||||
return flowMapper.selectById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<FlowDO> getFlowList(Collection<Long> ids) {
|
||||
return flowMapper.selectBatchIds(ids);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PageResult<FlowDO> getFlowPage(FlowPageReqVO pageReqVO) {
|
||||
return flowMapper.selectPage(pageReqVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<FlowDO> getFlowList(FlowExportReqVO exportReqVO) {
|
||||
return flowMapper.selectList(exportReqVO);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,102 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee;
|
||||
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import javax.annotation.Resource;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
import org.springframework.security.access.prepost.PreAuthorize;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import io.swagger.v3.oas.annotations.Parameter;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
|
||||
import javax.validation.constraints.*;
|
||||
import javax.validation.*;
|
||||
import javax.servlet.http.*;
|
||||
import java.util.*;
|
||||
import java.io.IOException;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||
|
||||
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils;
|
||||
|
||||
import cn.iocoder.yudao.framework.operatelog.core.annotations.OperateLog;
|
||||
import static cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum.*;
|
||||
|
||||
import cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo.*;
|
||||
import cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee.ElectronicEmployeeDO;
|
||||
import cn.iocoder.yudao.module.ea.convert.electronicemployee.ElectronicEmployeeConvert;
|
||||
import cn.iocoder.yudao.module.ea.service.electronicemployee.ElectronicEmployeeService;
|
||||
|
||||
@Tag(name = "管理后台 - 员工档案")
|
||||
@RestController
|
||||
@RequestMapping("/ea/electronic-employee")
|
||||
@Validated
|
||||
public class ElectronicEmployeeController {
|
||||
|
||||
@Resource
|
||||
private ElectronicEmployeeService electronicEmployeeService;
|
||||
|
||||
@PostMapping("/create")
|
||||
@Operation(summary = "创建员工档案")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:create')")
|
||||
public CommonResult<Long> createElectronicEmployee(@Valid @RequestBody ElectronicEmployeeCreateReqVO createReqVO) {
|
||||
return success(electronicEmployeeService.createElectronicEmployee(createReqVO));
|
||||
}
|
||||
|
||||
@PutMapping("/update")
|
||||
@Operation(summary = "更新员工档案")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:update')")
|
||||
public CommonResult<Boolean> updateElectronicEmployee(@Valid @RequestBody ElectronicEmployeeUpdateReqVO updateReqVO) {
|
||||
electronicEmployeeService.updateElectronicEmployee(updateReqVO);
|
||||
return success(true);
|
||||
}
|
||||
|
||||
@DeleteMapping("/delete")
|
||||
@Operation(summary = "删除员工档案")
|
||||
@Parameter(name = "id", description = "编号", required = true)
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:delete')")
|
||||
public CommonResult<Boolean> deleteElectronicEmployee(@RequestParam("id") Long id) {
|
||||
electronicEmployeeService.deleteElectronicEmployee(id);
|
||||
return success(true);
|
||||
}
|
||||
|
||||
@GetMapping("/get")
|
||||
@Operation(summary = "获得员工档案")
|
||||
@Parameter(name = "id", description = "编号", required = true, example = "1024")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:query')")
|
||||
public CommonResult<ElectronicEmployeeRespVO> getElectronicEmployee(@RequestParam("id") Long id) {
|
||||
ElectronicEmployeeDO electronicEmployee = electronicEmployeeService.getElectronicEmployee(id);
|
||||
return success(ElectronicEmployeeConvert.INSTANCE.convert(electronicEmployee));
|
||||
}
|
||||
|
||||
@GetMapping("/list")
|
||||
@Operation(summary = "获得员工档案列表")
|
||||
@Parameter(name = "ids", description = "编号列表", required = true, example = "1024,2048")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:query')")
|
||||
public CommonResult<List<ElectronicEmployeeRespVO>> getElectronicEmployeeList(@RequestParam("ids") Collection<Long> ids) {
|
||||
List<ElectronicEmployeeDO> list = electronicEmployeeService.getElectronicEmployeeList(ids);
|
||||
return success(ElectronicEmployeeConvert.INSTANCE.convertList(list));
|
||||
}
|
||||
|
||||
@GetMapping("/page")
|
||||
@Operation(summary = "获得员工档案分页")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:query')")
|
||||
public CommonResult<PageResult<ElectronicEmployeeRespVO>> getElectronicEmployeePage(@Valid ElectronicEmployeePageReqVO pageVO) {
|
||||
PageResult<ElectronicEmployeeDO> pageResult = electronicEmployeeService.getElectronicEmployeePage(pageVO);
|
||||
return success(ElectronicEmployeeConvert.INSTANCE.convertPage(pageResult));
|
||||
}
|
||||
|
||||
@GetMapping("/export-excel")
|
||||
@Operation(summary = "导出员工档案 Excel")
|
||||
@PreAuthorize("@ss.hasPermission('ea:electronic-employee:export')")
|
||||
@OperateLog(type = EXPORT)
|
||||
public void exportElectronicEmployeeExcel(@Valid ElectronicEmployeeExportReqVO exportReqVO,
|
||||
HttpServletResponse response) throws IOException {
|
||||
List<ElectronicEmployeeDO> list = electronicEmployeeService.getElectronicEmployeeList(exportReqVO);
|
||||
// 导出 Excel
|
||||
List<ElectronicEmployeeExcelVO> datas = ElectronicEmployeeConvert.INSTANCE.convertList02(list);
|
||||
ExcelUtils.write(response, "员工档案.xls", "数据", ElectronicEmployeeExcelVO.class, datas);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.*;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import javax.validation.constraints.*;
|
||||
|
||||
/**
|
||||
* @author HP
|
||||
*/
|
||||
@Schema(description = "管理后台 - 员工档案创建 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class ElectronicEmployeeCreateReqVO extends ElectronicEmployeeBaseVO {
|
||||
|
||||
@Schema(description = "出生日期")
|
||||
private LocalDate birthdate;
|
||||
|
||||
@Schema(description = "地址")
|
||||
private String address;
|
||||
|
||||
@Schema(description = "护照号码")
|
||||
private String passportNumber;
|
||||
|
||||
@Schema(description = "毕业学校")
|
||||
private String graduationSchool;
|
||||
|
||||
@Schema(description = "专业")
|
||||
private String major;
|
||||
|
||||
@Schema(description = "学历")
|
||||
private String education;
|
||||
|
||||
@Schema(description = "教育经历")
|
||||
private String educationExperience;
|
||||
|
||||
@Schema(description = "工作经历")
|
||||
private String workExperience;
|
||||
|
||||
@Schema(description = "职位")
|
||||
private String jobTitle;
|
||||
|
||||
@Schema(description = "职位级别")
|
||||
private String jobLevel;
|
||||
|
||||
@Schema(description = "职位描述", example = "你说的对")
|
||||
private String jobDescription;
|
||||
|
||||
@Schema(description = "薪酬")
|
||||
private Long salary;
|
||||
|
||||
@Schema(description = "身体状况")
|
||||
private String healthCondition;
|
||||
|
||||
@Schema(description = "体检记录")
|
||||
private String medicalRecords;
|
||||
|
||||
@Schema(description = "疾病史")
|
||||
private String diseaseHistory;
|
||||
|
||||
@Schema(description = "养老保险")
|
||||
private String socialInsurance;
|
||||
|
||||
@Schema(description = "医疗保险")
|
||||
private Long pensionInsurance;
|
||||
|
||||
@Schema(description = "失业保险")
|
||||
private Long medicalInsurance;
|
||||
|
||||
@Schema(description = "失业保险")
|
||||
private Long unemploymentInsurance;
|
||||
|
||||
@Schema(description = "工伤保险")
|
||||
private Long workInjuryInsurance;
|
||||
|
||||
@Schema(description = "考核评价")
|
||||
private String leaveRecords;
|
||||
|
||||
@Schema(description = "奖惩记录")
|
||||
private String overtimeRecords;
|
||||
|
||||
@Schema(description = "培训计划")
|
||||
private String welfareBenefits;
|
||||
|
||||
@Schema(description = "培训成果")
|
||||
private String performanceEvaluation;
|
||||
|
||||
@Schema(description = "个人标签")
|
||||
private String rewardsPunishments;
|
||||
|
||||
@Schema(description = "兴趣爱好")
|
||||
private String trainingRecords;
|
||||
|
||||
@Schema(description = "特长", example = "你说的对")
|
||||
private String personalDescription;
|
||||
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo;
|
||||
|
||||
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat;
|
||||
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* 员工档案 Excel VO
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Data
|
||||
public class ElectronicEmployeeExcelVO {
|
||||
|
||||
@ExcelProperty("制单人")
|
||||
private String createBy;
|
||||
|
||||
@ExcelProperty("创建日期")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@ExcelProperty("业务实体")
|
||||
private String company;
|
||||
|
||||
@ExcelProperty("所属部门")
|
||||
private String deptName;
|
||||
|
||||
@ExcelProperty("员工姓名")
|
||||
private String name;
|
||||
|
||||
@ExcelProperty(value = "性别", converter = DictConvert.class)
|
||||
@DictFormat("system_user_sex") // TODO 代码优化:建议设置到对应的 XXXDictTypeConstants 枚举类中
|
||||
private String gender;
|
||||
|
||||
@ExcelProperty("国籍")
|
||||
private String nationality;
|
||||
|
||||
@ExcelProperty("联系方式")
|
||||
private String contactNumber;
|
||||
|
||||
@ExcelProperty("身份证号")
|
||||
private String idCardNumber;
|
||||
|
||||
@ExcelProperty("年度")
|
||||
private String year;
|
||||
|
||||
@ExcelProperty("月份")
|
||||
private String period;
|
||||
|
||||
@ExcelProperty(value = "借阅状态", converter = DictConvert.class)
|
||||
@DictFormat("infra_boolean_string") // TODO 代码优化:建议设置到对应的 XXXDictTypeConstants 枚举类中
|
||||
private String borrowStatus;
|
||||
|
||||
@ExcelProperty("归档时间")
|
||||
private String recordTime;
|
||||
|
||||
@ExcelProperty("纸档位置")
|
||||
private String position;
|
||||
|
||||
@ExcelProperty("完整性")
|
||||
private Integer cherks;
|
||||
|
||||
@ExcelProperty("归档状态")
|
||||
private String fileStatus;
|
||||
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo;
|
||||
|
||||
import lombok.*;
|
||||
import java.util.*;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
||||
|
||||
@Schema(description = "管理后台 - 员工档案分页 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class ElectronicEmployeePageReqVO extends PageParam {
|
||||
|
||||
@Schema(description = "制单人")
|
||||
private String createBy;
|
||||
|
||||
@Schema(description = "创建日期")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
private LocalDateTime[] createTime;
|
||||
|
||||
@Schema(description = "业务实体")
|
||||
private String company;
|
||||
|
||||
@Schema(description = "所属部门", example = "王五")
|
||||
private String deptName;
|
||||
|
||||
@Schema(description = "员工姓名", example = "张三")
|
||||
private String name;
|
||||
|
||||
@Schema(description = "性别")
|
||||
private String gender;
|
||||
|
||||
@Schema(description = "国籍")
|
||||
private String nationality;
|
||||
|
||||
@Schema(description = "联系方式")
|
||||
private String contactNumber;
|
||||
|
||||
@Schema(description = "身份证号")
|
||||
private String idCardNumber;
|
||||
|
||||
@Schema(description = "年度")
|
||||
private String year;
|
||||
|
||||
@Schema(description = "月份")
|
||||
private String period;
|
||||
|
||||
@Schema(description = "借阅状态", example = "2")
|
||||
private String borrowStatus;
|
||||
|
||||
@Schema(description = "归档时间")
|
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||
private String[] recordTime;
|
||||
|
||||
@Schema(description = "纸档位置")
|
||||
private String position;
|
||||
|
||||
@Schema(description = "完整性")
|
||||
private Integer cherks;
|
||||
|
||||
@Schema(description = "归档状态", example = "2")
|
||||
private String fileStatus;
|
||||
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Schema(description = "管理后台 - 员工档案 Response VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class ElectronicEmployeeRespVO extends ElectronicEmployeeBaseVO {
|
||||
|
||||
@Schema(description = "创建日期")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.*;
|
||||
import javax.validation.constraints.*;
|
||||
|
||||
@Schema(description = "管理后台 - 员工档案更新 Request VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
public class ElectronicEmployeeUpdateReqVO extends ElectronicEmployeeBaseVO {
|
||||
|
||||
@Schema(description = "出生日期")
|
||||
private LocalDate birthdate;
|
||||
|
||||
@Schema(description = "地址")
|
||||
private String address;
|
||||
|
||||
@Schema(description = "护照号码")
|
||||
private String passportNumber;
|
||||
|
||||
@Schema(description = "毕业学校")
|
||||
private String graduationSchool;
|
||||
|
||||
@Schema(description = "专业")
|
||||
private String major;
|
||||
|
||||
@Schema(description = "学历")
|
||||
private String education;
|
||||
|
||||
@Schema(description = "教育经历")
|
||||
private String educationExperience;
|
||||
|
||||
@Schema(description = "工作经历")
|
||||
private String workExperience;
|
||||
|
||||
@Schema(description = "职位")
|
||||
private String jobTitle;
|
||||
|
||||
@Schema(description = "职位级别")
|
||||
private String jobLevel;
|
||||
|
||||
@Schema(description = "职位描述", example = "你说的对")
|
||||
private String jobDescription;
|
||||
|
||||
@Schema(description = "薪酬")
|
||||
private Long salary;
|
||||
|
||||
@Schema(description = "身体状况")
|
||||
private String healthCondition;
|
||||
|
||||
@Schema(description = "体检记录")
|
||||
private String medicalRecords;
|
||||
|
||||
@Schema(description = "疾病史")
|
||||
private String diseaseHistory;
|
||||
|
||||
@Schema(description = "养老保险")
|
||||
private String socialInsurance;
|
||||
|
||||
@Schema(description = "医疗保险")
|
||||
private Long pensionInsurance;
|
||||
|
||||
@Schema(description = "失业保险")
|
||||
private Long medicalInsurance;
|
||||
|
||||
@Schema(description = "失业保险")
|
||||
private Long unemploymentInsurance;
|
||||
|
||||
@Schema(description = "工伤保险")
|
||||
private Long workInjuryInsurance;
|
||||
|
||||
@Schema(description = "考核评价")
|
||||
private String leaveRecords;
|
||||
|
||||
@Schema(description = "奖惩记录")
|
||||
private String overtimeRecords;
|
||||
|
||||
@Schema(description = "培训计划")
|
||||
private String welfareBenefits;
|
||||
|
||||
@Schema(description = "培训成果")
|
||||
private String performanceEvaluation;
|
||||
|
||||
@Schema(description = "个人标签")
|
||||
private String rewardsPunishments;
|
||||
|
||||
@Schema(description = "兴趣爱好")
|
||||
private String trainingRecords;
|
||||
|
||||
@Schema(description = "特长", example = "你说的对")
|
||||
private String personalDescription;
|
||||
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package cn.iocoder.yudao.module.ea.convert.electronicemployee;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
import org.mapstruct.Mapper;
|
||||
import org.mapstruct.factory.Mappers;
|
||||
import cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo.*;
|
||||
import cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee.ElectronicEmployeeDO;
|
||||
|
||||
/**
|
||||
* 员工档案 Convert
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Mapper
|
||||
public interface ElectronicEmployeeConvert {
|
||||
|
||||
ElectronicEmployeeConvert INSTANCE = Mappers.getMapper(ElectronicEmployeeConvert.class);
|
||||
|
||||
ElectronicEmployeeDO convert(ElectronicEmployeeCreateReqVO bean);
|
||||
|
||||
ElectronicEmployeeDO convert(ElectronicEmployeeUpdateReqVO bean);
|
||||
|
||||
ElectronicEmployeeRespVO convert(ElectronicEmployeeDO bean);
|
||||
|
||||
List<ElectronicEmployeeRespVO> convertList(List<ElectronicEmployeeDO> list);
|
||||
|
||||
PageResult<ElectronicEmployeeRespVO> convertPage(PageResult<ElectronicEmployeeDO> page);
|
||||
|
||||
List<ElectronicEmployeeExcelVO> convertList02(List<ElectronicEmployeeDO> list);
|
||||
|
||||
}
|
@ -0,0 +1,225 @@
|
||||
package cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.*;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
|
||||
|
||||
/**
|
||||
* 员工档案 DO
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@TableName("ea_electronic_employee")
|
||||
@KeySequence("ea_electronic_employee_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ToString(callSuper = true)
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class ElectronicEmployeeDO extends BaseDO {
|
||||
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId
|
||||
private Long id;
|
||||
/**
|
||||
* 制单人
|
||||
*/
|
||||
private String createBy;
|
||||
/**
|
||||
* 业务实体id
|
||||
*/
|
||||
private Long companyId;
|
||||
/**
|
||||
* 业务实体
|
||||
*/
|
||||
private String company;
|
||||
/**
|
||||
* 所属部门id
|
||||
*/
|
||||
private Long deptId;
|
||||
/**
|
||||
* 所属部门
|
||||
*/
|
||||
private String deptName;
|
||||
/**
|
||||
* 员工姓名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 性别
|
||||
*
|
||||
* 枚举
|
||||
*/
|
||||
private String gender;
|
||||
/**
|
||||
* 出生日期
|
||||
*/
|
||||
private LocalDate birthdate;
|
||||
/**
|
||||
* 国籍
|
||||
*/
|
||||
private String nationality;
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
private String address;
|
||||
/**
|
||||
* 联系方式
|
||||
*/
|
||||
private String contactNumber;
|
||||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
private String idCardNumber;
|
||||
/**
|
||||
* 护照号码
|
||||
*/
|
||||
private String passportNumber;
|
||||
/**
|
||||
* 毕业学校
|
||||
*/
|
||||
private String graduationSchool;
|
||||
/**
|
||||
* 专业
|
||||
*/
|
||||
private String major;
|
||||
/**
|
||||
* 学历
|
||||
*/
|
||||
private String education;
|
||||
/**
|
||||
* 教育经历
|
||||
*/
|
||||
private String educationExperience;
|
||||
/**
|
||||
* 工作经历
|
||||
*/
|
||||
private String workExperience;
|
||||
/**
|
||||
* 职位
|
||||
*/
|
||||
private String jobTitle;
|
||||
/**
|
||||
* 职位级别
|
||||
*/
|
||||
private String jobLevel;
|
||||
/**
|
||||
* 职位描述
|
||||
*/
|
||||
private String jobDescription;
|
||||
/**
|
||||
* 薪酬
|
||||
*/
|
||||
private Long salary;
|
||||
/**
|
||||
* 身体状况
|
||||
*/
|
||||
private String healthCondition;
|
||||
/**
|
||||
* 体检记录
|
||||
*/
|
||||
private String medicalRecords;
|
||||
/**
|
||||
* 疾病史
|
||||
*
|
||||
* 枚举
|
||||
*/
|
||||
private String diseaseHistory;
|
||||
/**
|
||||
* 养老保险
|
||||
*
|
||||
* 枚举
|
||||
*/
|
||||
private String socialInsurance;
|
||||
/**
|
||||
* 医疗保险
|
||||
*/
|
||||
private Long pensionInsurance;
|
||||
/**
|
||||
* 失业保险
|
||||
*/
|
||||
private Long medicalInsurance;
|
||||
/**
|
||||
* 失业保险
|
||||
*/
|
||||
private Long unemploymentInsurance;
|
||||
/**
|
||||
* 工伤保险
|
||||
*/
|
||||
private Long workInjuryInsurance;
|
||||
/**
|
||||
* 考核评价
|
||||
*/
|
||||
private String leaveRecords;
|
||||
/**
|
||||
* 奖惩记录
|
||||
*/
|
||||
private String overtimeRecords;
|
||||
/**
|
||||
* 培训计划
|
||||
*/
|
||||
private String welfareBenefits;
|
||||
/**
|
||||
* 培训成果
|
||||
*/
|
||||
private String performanceEvaluation;
|
||||
/**
|
||||
* 个人标签
|
||||
*/
|
||||
private String rewardsPunishments;
|
||||
/**
|
||||
* 兴趣爱好
|
||||
*/
|
||||
private String trainingRecords;
|
||||
/**
|
||||
* 特长
|
||||
*/
|
||||
private String personalDescription;
|
||||
/**
|
||||
* 年度
|
||||
*/
|
||||
private String year;
|
||||
/**
|
||||
* 月份
|
||||
*/
|
||||
private String period;
|
||||
/**
|
||||
* 借阅状态
|
||||
*
|
||||
* 枚举
|
||||
*/
|
||||
private String borrowStatus;
|
||||
/**
|
||||
* 归档时间
|
||||
*/
|
||||
private String recordTime;
|
||||
/**
|
||||
* 纸档位置
|
||||
*/
|
||||
private String position;
|
||||
/**
|
||||
* 完整性
|
||||
*/
|
||||
private Integer cherks;
|
||||
/**
|
||||
* 归档id
|
||||
*/
|
||||
private Long recordId;
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 归档状态
|
||||
*/
|
||||
private String fileStatus;
|
||||
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package cn.iocoder.yudao.module.ea.dal.mysql.electronicemployee;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX;
|
||||
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX;
|
||||
import cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee.ElectronicEmployeeDO;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo.*;
|
||||
|
||||
/**
|
||||
* 员工档案 Mapper
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Mapper
|
||||
public interface ElectronicEmployeeMapper extends BaseMapperX<ElectronicEmployeeDO> {
|
||||
|
||||
default PageResult<ElectronicEmployeeDO> selectPage(ElectronicEmployeePageReqVO reqVO) {
|
||||
return selectPage(reqVO, new LambdaQueryWrapperX<ElectronicEmployeeDO>()
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCreateBy, reqVO.getCreateBy())
|
||||
.betweenIfPresent(ElectronicEmployeeDO::getCreateTime, reqVO.getCreateTime())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCompany, reqVO.getCompany())
|
||||
.likeIfPresent(ElectronicEmployeeDO::getDeptName, reqVO.getDeptName())
|
||||
.likeIfPresent(ElectronicEmployeeDO::getName, reqVO.getName())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getGender, reqVO.getGender())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getNationality, reqVO.getNationality())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getContactNumber, reqVO.getContactNumber())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getIdCardNumber, reqVO.getIdCardNumber())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getYear, reqVO.getYear())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getPeriod, reqVO.getPeriod())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getBorrowStatus, reqVO.getBorrowStatus())
|
||||
.betweenIfPresent(ElectronicEmployeeDO::getRecordTime, reqVO.getRecordTime())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getPosition, reqVO.getPosition())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCherks, reqVO.getCherks())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getFileStatus, reqVO.getFileStatus())
|
||||
.orderByDesc(ElectronicEmployeeDO::getId));
|
||||
}
|
||||
|
||||
default List<ElectronicEmployeeDO> selectList(ElectronicEmployeeExportReqVO reqVO) {
|
||||
return selectList(new LambdaQueryWrapperX<ElectronicEmployeeDO>()
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCreateBy, reqVO.getCreateBy())
|
||||
.betweenIfPresent(ElectronicEmployeeDO::getCreateTime, reqVO.getCreateTime())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCompany, reqVO.getCompany())
|
||||
.likeIfPresent(ElectronicEmployeeDO::getDeptName, reqVO.getDeptName())
|
||||
.likeIfPresent(ElectronicEmployeeDO::getName, reqVO.getName())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getGender, reqVO.getGender())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getNationality, reqVO.getNationality())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getContactNumber, reqVO.getContactNumber())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getIdCardNumber, reqVO.getIdCardNumber())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getYear, reqVO.getYear())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getPeriod, reqVO.getPeriod())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getBorrowStatus, reqVO.getBorrowStatus())
|
||||
.betweenIfPresent(ElectronicEmployeeDO::getRecordTime, reqVO.getRecordTime())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getPosition, reqVO.getPosition())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getCherks, reqVO.getCherks())
|
||||
.eqIfPresent(ElectronicEmployeeDO::getFileStatus, reqVO.getFileStatus())
|
||||
.orderByDesc(ElectronicEmployeeDO::getId));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
package cn.iocoder.yudao.module.ea.service.electronicemployee;
|
||||
|
||||
import java.util.*;
|
||||
import javax.validation.*;
|
||||
import cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo.*;
|
||||
import cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee.ElectronicEmployeeDO;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
/**
|
||||
* 员工档案 Service 接口
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
public interface ElectronicEmployeeService {
|
||||
|
||||
/**
|
||||
* 创建员工档案
|
||||
*
|
||||
* @param createReqVO 创建信息
|
||||
* @return 编号
|
||||
*/
|
||||
Long createElectronicEmployee(@Valid ElectronicEmployeeCreateReqVO createReqVO);
|
||||
|
||||
/**
|
||||
* 更新员工档案
|
||||
*
|
||||
* @param updateReqVO 更新信息
|
||||
*/
|
||||
void updateElectronicEmployee(@Valid ElectronicEmployeeUpdateReqVO updateReqVO);
|
||||
|
||||
/**
|
||||
* 删除员工档案
|
||||
*
|
||||
* @param id 编号
|
||||
*/
|
||||
void deleteElectronicEmployee(Long id);
|
||||
|
||||
/**
|
||||
* 获得员工档案
|
||||
*
|
||||
* @param id 编号
|
||||
* @return 员工档案
|
||||
*/
|
||||
ElectronicEmployeeDO getElectronicEmployee(Long id);
|
||||
|
||||
/**
|
||||
* 获得员工档案列表
|
||||
*
|
||||
* @param ids 编号
|
||||
* @return 员工档案列表
|
||||
*/
|
||||
List<ElectronicEmployeeDO> getElectronicEmployeeList(Collection<Long> ids);
|
||||
|
||||
/**
|
||||
* 获得员工档案分页
|
||||
*
|
||||
* @param pageReqVO 分页查询
|
||||
* @return 员工档案分页
|
||||
*/
|
||||
PageResult<ElectronicEmployeeDO> getElectronicEmployeePage(ElectronicEmployeePageReqVO pageReqVO);
|
||||
|
||||
/**
|
||||
* 获得员工档案列表, 用于 Excel 导出
|
||||
*
|
||||
* @param exportReqVO 查询条件
|
||||
* @return 员工档案列表
|
||||
*/
|
||||
List<ElectronicEmployeeDO> getElectronicEmployeeList(ElectronicEmployeeExportReqVO exportReqVO);
|
||||
|
||||
}
|
@ -0,0 +1,82 @@
|
||||
package cn.iocoder.yudao.module.ea.service.electronicemployee;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
import javax.annotation.Resource;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
||||
import java.util.*;
|
||||
import cn.iocoder.yudao.module.ea.controller.admin.electronicemployee.vo.*;
|
||||
import cn.iocoder.yudao.module.ea.dal.dataobject.electronicemployee.ElectronicEmployeeDO;
|
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||
|
||||
import cn.iocoder.yudao.module.ea.convert.electronicemployee.ElectronicEmployeeConvert;
|
||||
import cn.iocoder.yudao.module.ea.dal.mysql.electronicemployee.ElectronicEmployeeMapper;
|
||||
|
||||
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception;
|
||||
import static cn.iocoder.yudao.module.ea.enums.ErrorCodeConstants.*;
|
||||
|
||||
/**
|
||||
* 员工档案 Service 实现类
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@Service
|
||||
@Validated
|
||||
public class ElectronicEmployeeServiceImpl implements ElectronicEmployeeService {
|
||||
|
||||
@Resource
|
||||
private ElectronicEmployeeMapper electronicEmployeeMapper;
|
||||
|
||||
@Override
|
||||
public Long createElectronicEmployee(ElectronicEmployeeCreateReqVO createReqVO) {
|
||||
// 插入
|
||||
ElectronicEmployeeDO electronicEmployee = ElectronicEmployeeConvert.INSTANCE.convert(createReqVO);
|
||||
electronicEmployeeMapper.insert(electronicEmployee);
|
||||
// 返回
|
||||
return electronicEmployee.getId();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateElectronicEmployee(ElectronicEmployeeUpdateReqVO updateReqVO) {
|
||||
// 校验存在
|
||||
validateElectronicEmployeeExists(updateReqVO.getId());
|
||||
// 更新
|
||||
ElectronicEmployeeDO updateObj = ElectronicEmployeeConvert.INSTANCE.convert(updateReqVO);
|
||||
electronicEmployeeMapper.updateById(updateObj);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void deleteElectronicEmployee(Long id) {
|
||||
// 校验存在
|
||||
validateElectronicEmployeeExists(id);
|
||||
// 删除
|
||||
electronicEmployeeMapper.deleteById(id);
|
||||
}
|
||||
|
||||
private void validateElectronicEmployeeExists(Long id) {
|
||||
if (electronicEmployeeMapper.selectById(id) == null) {
|
||||
throw exception(ELECTRONIC_EMPLOYEE_NOT_EXISTS);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public ElectronicEmployeeDO getElectronicEmployee(Long id) {
|
||||
return electronicEmployeeMapper.selectById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ElectronicEmployeeDO> getElectronicEmployeeList(Collection<Long> ids) {
|
||||
return electronicEmployeeMapper.selectBatchIds(ids);
|
||||
}
|
||||
|
||||
@Override
|
||||
public PageResult<ElectronicEmployeeDO> getElectronicEmployeePage(ElectronicEmployeePageReqVO pageReqVO) {
|
||||
return electronicEmployeeMapper.selectPage(pageReqVO);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ElectronicEmployeeDO> getElectronicEmployeeList(ElectronicEmployeeExportReqVO exportReqVO) {
|
||||
return electronicEmployeeMapper.selectList(exportReqVO);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,35 @@
|
||||
package cn.iocoder.yudao.module.ea.utils.enums;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.EnumValue;
|
||||
import com.fasterxml.jackson.annotation.JsonValue;
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* author: zk
|
||||
* date: 2023/9/22
|
||||
* description: 借阅状态枚举
|
||||
* @author HP
|
||||
*/
|
||||
@Getter
|
||||
public enum BorrowStatusEnum {
|
||||
/**
|
||||
* 借阅状态枚举
|
||||
*/
|
||||
BORROWSTATUS_TRUE("true", "1"),
|
||||
BORROWSTATUS_FALSE("false", "0")
|
||||
;
|
||||
|
||||
@JsonValue
|
||||
private final String status;
|
||||
|
||||
/**
|
||||
* 获取转换后的状态
|
||||
*/
|
||||
@EnumValue
|
||||
private final String isStatus;
|
||||
|
||||
BorrowStatusEnum(String status, String isStatus) {
|
||||
this.status = status;
|
||||
this.isStatus = isStatus;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue