diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/HtmlToPdfInterceptor.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/HtmlToPdfInterceptor.java new file mode 100644 index 0000000..e6a4c99 --- /dev/null +++ b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/HtmlToPdfInterceptor.java @@ -0,0 +1,2 @@ +package cn.iocoder.yudao.framework.common.util.pdf;public class HtmlToPdfInterceptor { +} diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/WkHtmlToPdfUtil.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/WkHtmlToPdfUtil.java new file mode 100644 index 0000000..bbad771 --- /dev/null +++ b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/pdf/WkHtmlToPdfUtil.java @@ -0,0 +1,2 @@ +package cn.iocoder.yudao.framework.common.util.pdf;public class WkHtmlToPdfUtil { +} diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/JobInfoController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/JobInfoController.java new file mode 100644 index 0000000..eb780ac --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/JobInfoController.java @@ -0,0 +1,90 @@ +package cn.iocoder.yudao.module.system.controller.admin.jobinfo; + +import org.springframework.web.bind.annotation.*; +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 java.util.*; +import java.io.IOException; + +import cn.iocoder.yudao.framework.common.pojo.PageParam; +import cn.iocoder.yudao.framework.common.pojo.PageResult; +import cn.iocoder.yudao.framework.common.pojo.CommonResult; +import cn.iocoder.yudao.framework.common.util.object.BeanUtils; +import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; + +import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils; + +import cn.iocoder.yudao.framework.apilog.core.annotation.ApiAccessLog; +import static cn.iocoder.yudao.framework.apilog.core.enums.OperateTypeEnum.*; + +import cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo.*; +import cn.iocoder.yudao.module.system.dal.dataobject.jobinfo.JobInfoDO; +import cn.iocoder.yudao.module.system.service.jobinfo.JobInfoService; + +import javax.annotation.Resource; +import javax.servlet.http.HttpServletResponse; +import javax.validation.Valid; + +@Tag(name = "管理后台 - 工作汇报") +@RestController +@RequestMapping("/system/job-info") +@Validated +public class JobInfoController { + + @Resource + private JobInfoService jobInfoService; + + @PostMapping("/create") + @Operation(summary = "创建工作汇报") + public CommonResult createJobInfo(@Valid @RequestBody JobInfoSaveReqVO createReqVO) { + return success(jobInfoService.createJobInfo(createReqVO)); + } + + @PutMapping("/update") + @Operation(summary = "更新工作汇报") + public CommonResult updateJobInfo(@Valid @RequestBody JobInfoSaveReqVO updateReqVO) { + jobInfoService.updateJobInfo(updateReqVO); + return success(true); + } + + @DeleteMapping("/delete") + @Operation(summary = "删除工作汇报") + @Parameter(name = "id", description = "编号", required = true) + public CommonResult deleteJobInfo(@RequestParam("id") Long id) { + jobInfoService.deleteJobInfo(id); + return success(true); + } + + @GetMapping("/get") + @Operation(summary = "获得工作汇报") + @Parameter(name = "id", description = "编号", required = true, example = "1024") + public CommonResult getJobInfo(@RequestParam("id") Long id) { + JobInfoDO jobInfo = jobInfoService.getJobInfo(id); + return success(BeanUtils.toBean(jobInfo, JobInfoRespVO.class)); + } + + @GetMapping("/page") + @Operation(summary = "获得工作汇报分页") + public CommonResult> getJobInfoPage(@Valid JobInfoPageReqVO pageReqVO) { + PageResult pageResult = jobInfoService.getJobInfoPage(pageReqVO); + return success(BeanUtils.toBean(pageResult, JobInfoRespVO.class)); + } + + @GetMapping("/export-excel") + @Operation(summary = "导出工作汇报 Excel") + @ApiAccessLog(operateType = EXPORT) + public void exportJobInfoExcel(@Valid JobInfoPageReqVO pageReqVO, + HttpServletResponse response) throws IOException { + pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); + List list = jobInfoService.getJobInfoPage(pageReqVO).getList(); + // 导出 Excel + ExcelUtils.write(response, "工作汇报.xls", "数据", JobInfoRespVO.class, + BeanUtils.toBean(list, JobInfoRespVO.class)); + } + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoPageReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoPageReqVO.java new file mode 100644 index 0000000..5b9fb09 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoPageReqVO.java @@ -0,0 +1,28 @@ +package cn.iocoder.yudao.module.system.controller.admin.jobinfo.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 JobInfoPageReqVO extends PageParam { + + @Schema(description = "汇报标题") + private String title; + + @Schema(description = "汇报人姓名", example = "赵六") + private String jobName; + + @Schema(description = "创建时间") + @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) + private LocalDateTime[] createTime; + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespDetailVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespDetailVO.java new file mode 100644 index 0000000..1d5d4c7 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespDetailVO.java @@ -0,0 +1,45 @@ +package cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo; + +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer; +import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer; +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.*; + +import java.time.LocalDate; +import java.util.*; +import org.springframework.format.annotation.DateTimeFormat; +import java.time.LocalDateTime; +import com.alibaba.excel.annotation.*; + +@Schema(description = "管理后台 - 工作汇报 Response VO") +@Data +@ExcelIgnoreUnannotated +public class JobInfoRespVO { + + @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26792") + @ExcelProperty("id") + private Long id; + + @Schema(description = "汇报标题") + @ExcelProperty("汇报标题") + private String title; + + @Schema(description = "汇报日期") + @ExcelProperty("汇报日期") + @JsonSerialize(using = LocalDateSerializer.class) // 序列化(响应) + @JsonDeserialize(using = LocalDateDeserializer.class) // 反序列化(请求) + @JsonFormat(pattern = "yyyy-MM-dd") + private LocalDate jobDate; + + @Schema(description = "汇报人姓名", example = "赵六") + @ExcelProperty("汇报人姓名") + private String jobName; + + @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) + @ExcelProperty("创建时间") + private LocalDateTime createTime; + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespVO.java new file mode 100644 index 0000000..9c3527f --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoRespVO.java @@ -0,0 +1,37 @@ +package cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.*; + +import java.time.LocalDate; +import java.util.*; +import org.springframework.format.annotation.DateTimeFormat; +import java.time.LocalDateTime; +import com.alibaba.excel.annotation.*; + +@Schema(description = "管理后台 - 工作汇报 Response VO") +@Data +@ExcelIgnoreUnannotated +public class JobInfoRespVO { + + @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26792") + @ExcelProperty("id") + private Long id; + + @Schema(description = "汇报标题") + @ExcelProperty("汇报标题") + private String title; + + @Schema(description = "汇报日期") + @ExcelProperty("汇报日期") + private LocalDate jobDate; + + @Schema(description = "汇报人姓名", example = "赵六") + @ExcelProperty("汇报人姓名") + private String jobName; + + @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) + @ExcelProperty("创建时间") + private LocalDateTime createTime; + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoSaveReqVO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoSaveReqVO.java new file mode 100644 index 0000000..33b2598 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/jobinfo/vo/JobInfoSaveReqVO.java @@ -0,0 +1,28 @@ +package cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo; + +import io.swagger.v3.oas.annotations.media.Schema; +import lombok.*; + +import java.time.LocalDate; +import java.util.*; + +@Schema(description = "管理后台 - 工作汇报新增/修改 Request VO") +@Data +public class JobInfoSaveReqVO { + + @Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "26792") + private Long id; + + @Schema(description = "汇报标题") + private String title; + + @Schema(description = "汇报内容") + private String content; + + @Schema(description = "汇报日期") + private LocalDate jobDate; + + @Schema(description = "汇报人姓名", example = "赵六") + private String jobName; + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/jobinfo/JobInfoDO.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/jobinfo/JobInfoDO.java new file mode 100644 index 0000000..ab149c5 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/dataobject/jobinfo/JobInfoDO.java @@ -0,0 +1,49 @@ +package cn.iocoder.yudao.module.system.dal.dataobject.jobinfo; + +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("hb_job_info") +@KeySequence("hb_job_info_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。 +@Data +@EqualsAndHashCode(callSuper = true) +@ToString(callSuper = true) +@Builder +@NoArgsConstructor +@AllArgsConstructor +public class JobInfoDO extends BaseDO { + + /** + * id + */ + @TableId + private Long id; + /** + * 汇报标题 + */ + private String title; + /** + * 汇报内容 + */ + private String content; + /** + * 汇报日期 + */ + private LocalDate jobDate; + /** + * 汇报人姓名 + */ + private String jobName; + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/jobinfo/JobInfoMapper.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/jobinfo/JobInfoMapper.java new file mode 100644 index 0000000..28b7566 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/dal/mysql/jobinfo/JobInfoMapper.java @@ -0,0 +1,28 @@ +package cn.iocoder.yudao.module.system.dal.mysql.jobinfo; + +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.system.dal.dataobject.jobinfo.JobInfoDO; +import org.apache.ibatis.annotations.Mapper; +import cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo.*; + +/** + * 工作汇报 Mapper + * + * @author 芋道源码 + */ +@Mapper +public interface JobInfoMapper extends BaseMapperX { + + default PageResult selectPage(JobInfoPageReqVO reqVO) { + return selectPage(reqVO, new LambdaQueryWrapperX() + .eqIfPresent(JobInfoDO::getTitle, reqVO.getTitle()) + .likeIfPresent(JobInfoDO::getJobName, reqVO.getJobName()) + .betweenIfPresent(JobInfoDO::getCreateTime, reqVO.getCreateTime()) + .orderByDesc(JobInfoDO::getId)); + } + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoService.java new file mode 100644 index 0000000..d700efc --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoService.java @@ -0,0 +1,56 @@ +package cn.iocoder.yudao.module.system.service.jobinfo; + +import java.util.*; +import cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo.*; +import cn.iocoder.yudao.module.system.dal.dataobject.jobinfo.JobInfoDO; +import cn.iocoder.yudao.framework.common.pojo.PageResult; +import cn.iocoder.yudao.framework.common.pojo.PageParam; + +import javax.validation.Valid; + +/** + * 工作汇报 Service 接口 + * + * @author 芋道源码 + */ +public interface JobInfoService { + + /** + * 创建工作汇报 + * + * @param createReqVO 创建信息 + * @return 编号 + */ + Long createJobInfo(@Valid JobInfoSaveReqVO createReqVO); + + /** + * 更新工作汇报 + * + * @param updateReqVO 更新信息 + */ + void updateJobInfo(@Valid JobInfoSaveReqVO updateReqVO); + + /** + * 删除工作汇报 + * + * @param id 编号 + */ + void deleteJobInfo(Long id); + + /** + * 获得工作汇报 + * + * @param id 编号 + * @return 工作汇报 + */ + JobInfoDO getJobInfo(Long id); + + /** + * 获得工作汇报分页 + * + * @param pageReqVO 分页查询 + * @return 工作汇报分页 + */ + PageResult getJobInfoPage(JobInfoPageReqVO pageReqVO); + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoServiceImpl.java new file mode 100644 index 0000000..e212164 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/jobinfo/JobInfoServiceImpl.java @@ -0,0 +1,75 @@ +package cn.iocoder.yudao.module.system.service.jobinfo; + +import org.springframework.stereotype.Service; +import org.springframework.validation.annotation.Validated; +import org.springframework.transaction.annotation.Transactional; + +import java.util.*; +import cn.iocoder.yudao.module.system.controller.admin.jobinfo.vo.*; +import cn.iocoder.yudao.module.system.dal.dataobject.jobinfo.JobInfoDO; +import cn.iocoder.yudao.framework.common.pojo.PageResult; +import cn.iocoder.yudao.framework.common.pojo.PageParam; +import cn.iocoder.yudao.framework.common.util.object.BeanUtils; + +import cn.iocoder.yudao.module.system.dal.mysql.jobinfo.JobInfoMapper; + +import javax.annotation.Resource; + +import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; +import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; + +/** + * 工作汇报 Service 实现类 + * + * @author 芋道源码 + */ +@Service +@Validated +public class JobInfoServiceImpl implements JobInfoService { + + @Resource + private JobInfoMapper jobInfoMapper; + + @Override + public Long createJobInfo(JobInfoSaveReqVO createReqVO) { + // 插入 + JobInfoDO jobInfo = BeanUtils.toBean(createReqVO, JobInfoDO.class); + jobInfoMapper.insert(jobInfo); + // 返回 + return jobInfo.getId(); + } + + @Override + public void updateJobInfo(JobInfoSaveReqVO updateReqVO) { + // 校验存在 + validateJobInfoExists(updateReqVO.getId()); + // 更新 + JobInfoDO updateObj = BeanUtils.toBean(updateReqVO, JobInfoDO.class); + jobInfoMapper.updateById(updateObj); + } + + @Override + public void deleteJobInfo(Long id) { + // 校验存在 + validateJobInfoExists(id); + // 删除 + jobInfoMapper.deleteById(id); + } + + private void validateJobInfoExists(Long id) { + if (jobInfoMapper.selectById(id) == null) { + throw exception(JOB_INFO_NOT_EXISTS); + } + } + + @Override + public JobInfoDO getJobInfo(Long id) { + return jobInfoMapper.selectById(id); + } + + @Override + public PageResult getJobInfoPage(JobInfoPageReqVO pageReqVO) { + return jobInfoMapper.selectPage(pageReqVO); + } + +} \ No newline at end of file diff --git a/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/jobinfo/JobInfoMapper.xml b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/jobinfo/JobInfoMapper.xml new file mode 100644 index 0000000..4385de6 --- /dev/null +++ b/yudao-module-system/yudao-module-system-biz/src/main/resources/mapper/jobinfo/JobInfoMapper.xml @@ -0,0 +1,12 @@ + + + + + + + \ No newline at end of file