浏览代码

初始化项目

lixing 3 年之前
当前提交
b2b3840f4d
共有 34 个文件被更改,包括 2123 次插入0 次删除
  1. 9 0
      .gitignore
  2. 0 0
      README.md
  3. 90 0
      pom.xml
  4. 94 0
      src/main/java/com/persagy/apm/energy/report/monthly/controller/ReportBusinessDetailController.java
  5. 94 0
      src/main/java/com/persagy/apm/energy/report/monthly/controller/ReportOutlineController.java
  6. 16 0
      src/main/java/com/persagy/apm/energy/report/monthly/dao/ReportBusinessDetailMapper.java
  7. 16 0
      src/main/java/com/persagy/apm/energy/report/monthly/dao/ReportOutlineMapper.java
  8. 74 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/ConvertReportBusinessDetailTool.java
  9. 74 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/ConvertReportOutlineTool.java
  10. 78 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/ReportBusinessDetail.java
  11. 54 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/ReportOutline.java
  12. 71 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/AddReportBusinessDetailDTO.java
  13. 47 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/AddReportOutlineDTO.java
  14. 20 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/DeleteReportBusinessDetailDTO.java
  15. 20 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/DeleteReportOutlineDTO.java
  16. 62 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/PageQueryReportBusinessDetailDTO.java
  17. 44 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/PageQueryReportOutlineDTO.java
  18. 55 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportBusinessDetailDTO.java
  19. 20 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportBusinessDetailDetailDTO.java
  20. 37 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportOutlineDTO.java
  21. 20 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportOutlineDetailDTO.java
  22. 75 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/UpdateReportBusinessDetailDTO.java
  23. 51 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/dto/UpdateReportOutlineDTO.java
  24. 73 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportBusinessDetailItemVO.java
  25. 73 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportBusinessDetailListItemVO.java
  26. 55 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportOutlineItemVO.java
  27. 55 0
      src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportOutlineListItemVO.java
  28. 77 0
      src/main/java/com/persagy/apm/energy/report/monthly/service/IReportBusinessDetailService.java
  29. 77 0
      src/main/java/com/persagy/apm/energy/report/monthly/service/IReportOutlineService.java
  30. 295 0
      src/main/java/com/persagy/apm/energy/report/monthly/service/impl/ReportBusinessDetailServiceImpl.java
  31. 243 0
      src/main/java/com/persagy/apm/energy/report/monthly/service/impl/ReportOutlineServiceImpl.java
  32. 6 0
      src/main/resources/bootstrap.yml
  33. 27 0
      src/main/resources/mapper/ReportBusinessDetailMapper.xml
  34. 21 0
      src/main/resources/mapper/ReportOutlineMapper.xml

+ 9 - 0
.gitignore

@@ -0,0 +1,9 @@
+target/
+.settings/
+.project
+.classpath
+*.iml
+*.log
+*.versionsBackup
+.idea/
+/bin/

+ 0 - 0
README.md


+ 90 - 0
pom.xml

@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>com.persagy</groupId>
+        <artifactId>apm-package</artifactId>
+        <version>3.0.0</version>
+    </parent>
+
+    <artifactId>energy-report</artifactId>
+    <version>1.0.0</version>
+
+    <properties>
+        <maven.compiler.source>8</maven.compiler.source>
+        <maven.compiler.target>8</maven.compiler.target>
+    </properties>
+
+    <repositories>
+        <repository>
+            <id>integrated</id>
+            <name>releases Repository</name>
+            <url>http://47.93.132.139:8081/nexus/content/repositories/integrated/</url>
+        </repository>
+        <repository>
+            <id>persagy</id>
+            <name>persagy Repository</name>
+            <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
+        </repository>
+    </repositories>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <!-- 项目启动 -->
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>apm-server</artifactId>
+        </dependency>
+        <!-- apm 工具包 -->
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>apm-common</artifactId>
+        </dependency>
+        <!-- lang -->
+        <dependency>
+            <groupId>commons-lang</groupId>
+            <artifactId>commons-lang</artifactId>
+        </dependency>
+
+        <!-- gson json,java对象互转 -->
+        <dependency>
+            <groupId>com.google.code.gson</groupId>
+            <artifactId>gson</artifactId>
+        </dependency>
+        <!-- 配置中心(包含注册中心) -->
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>integrated-config-client</artifactId>
+        </dependency>
+
+        <!-- feign -->
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>integrated-ribbon-spring-boot-starter</artifactId>
+        </dependency>
+
+        <!-- swagger -->
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>integrated-swagger2-spring-boot-starter</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>com.persagy</groupId>
+            <artifactId>apm-mybatis</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.baomidou</groupId>
+                    <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+</project>

+ 94 - 0
src/main/java/com/persagy/apm/energy/report/monthly/controller/ReportBusinessDetailController.java

@@ -0,0 +1,94 @@
+package com.persagy.apm.energy.report.monthly.controller;
+
+import com.persagy.apm.energy.report.monthly.service.IReportBusinessDetailService;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.vo.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+import com.persagy.apm.common.response.*;
+import com.persagy.apm.common.utils.ResultHelper;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.*;
+
+import javax.validation.Valid;
+import java.util.List;
+
+/**
+ * 报告详情表控制层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:24
+ */
+@Api(tags = "报告详情表")
+@Validated
+@RestController
+@RequestMapping("reportBusinessDetails")
+public class ReportBusinessDetailController {
+    @Autowired
+    private IReportBusinessDetailService reportBusinessDetailService;
+
+    @ApiOperation(value = "创建报告详情表")
+    @PostMapping("/create")
+    public CommonResult<ApmResponseUpsertVO> createReportBusinessDetail(
+            @Valid @RequestBody AddReportBusinessDetailDTO addReportBusinessDetailDTO) {
+        String id = reportBusinessDetailService.createReportBusinessDetail(addReportBusinessDetailDTO);
+        return ResultHelper.single(new ApmResponseUpsertVO(id));
+    }
+
+    @ApiOperation(value = "报告详情表详情")
+    @PostMapping("/get")
+    public CommonResult<ResponseReportBusinessDetailItemVO> queryReportBusinessDetailDetail(
+            @Valid @RequestBody QueryReportBusinessDetailDetailDTO queryReportBusinessDetailDetailDTO) {
+        ReportBusinessDetail reportBusinessDetail = reportBusinessDetailService.queryReportBusinessDetailDetail(queryReportBusinessDetailDetailDTO.getId());
+        ResponseReportBusinessDetailItemVO responseReportBusinessDetailItemVO = ConvertReportBusinessDetailTool.INSTANCE.convert2ResponseItemDTO(reportBusinessDetail);
+        return ResultHelper.single(responseReportBusinessDetailItemVO);
+    }
+
+
+    @ApiOperation(value = "更新报告详情表")
+    @PostMapping("/update")
+    public CommonResult<ApmResponseUpsertVO> updateReportBusinessDetail(
+            @Valid @RequestBody UpdateReportBusinessDetailDTO updateReportBusinessDetailDTO) {
+        reportBusinessDetailService.updateReportBusinessDetail(updateReportBusinessDetailDTO);
+        return ResultHelper.single(new ApmResponseUpsertVO(updateReportBusinessDetailDTO.getId()));
+    }
+
+
+    @ApiOperation(value = "删除报告详情表")
+    @PostMapping("/delete")
+    public CommonResult deleteReportBusinessDetail(
+            @RequestBody @Valid DeleteReportBusinessDetailDTO deleteReportBusinessDetailDTO) {
+        reportBusinessDetailService.deleteReportBusinessDetail(deleteReportBusinessDetailDTO.getId());
+        return ResultHelper.success();
+    }
+
+
+    @ApiOperation(value = "报告详情表列表")
+    @PostMapping("/query")
+    public CommonResult<PageList<ResponseReportBusinessDetailListItemVO>> queryReportBusinessDetail(
+            @Valid @RequestBody QueryReportBusinessDetailDTO queryReportBusinessDetailDTO) {
+        List<ReportBusinessDetail> reportBusinessDetailList = reportBusinessDetailService.queryReportBusinessDetailList(queryReportBusinessDetailDTO);
+        List<ResponseReportBusinessDetailListItemVO> resultList = ConvertReportBusinessDetailTool.INSTANCE.convert2List(reportBusinessDetailList);
+        return ResultHelper.multi(resultList);
+    }
+
+    //@ApiOperation(value = "报告详情表列表, 分页查询")
+    //@PostMapping("/query")
+    //public CommonResult<PageList<ResponseReportBusinessDetailListItemVO>> queryReportBusinessDetail(
+    //        @Valid @RequestBody PageQueryReportBusinessDetailDTO pageQueryReportBusinessDetailDTO) {
+    //    IPage<ReportBusinessDetail> pagedList = reportBusinessDetailService.pageQueryReportBusinessDetail(pageQueryReportBusinessDetailDTO);
+    //    IPage<ResponseReportBusinessDetailListItemVO> pagedResultList = pagedList.convert(item -> {
+    //        try {
+    //           return ConvertReportBusinessDetailTool.INSTANCE.convert2ResponseListItemDTO(item);
+    //        } catch (Exception e) {
+    //            throw new IllegalArgumentException("分页查询,ReportBusinessDetail实体类转换为列表对象发生异常", e);
+    //        }
+    //    });
+    //    return ResultHelper.multi(pagedResultList);
+    //}
+}
+

+ 94 - 0
src/main/java/com/persagy/apm/energy/report/monthly/controller/ReportOutlineController.java

@@ -0,0 +1,94 @@
+package com.persagy.apm.energy.report.monthly.controller;
+
+import com.persagy.apm.energy.report.monthly.service.IReportOutlineService;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import io.swagger.annotations.ApiParam;
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.vo.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+import com.persagy.apm.common.response.*;
+import com.persagy.apm.common.utils.ResultHelper;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.*;
+
+import javax.validation.Valid;
+import java.util.List;
+
+/**
+ * 报告表控制层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Api(tags = "报告表")
+@Validated
+@RestController
+@RequestMapping("reportOutlines")
+public class ReportOutlineController {
+    @Autowired
+    private IReportOutlineService reportOutlineService;
+
+    @ApiOperation(value = "创建报告表")
+    @PostMapping("/create")
+    public CommonResult<ApmResponseUpsertVO> createReportOutline(
+            @Valid @RequestBody AddReportOutlineDTO addReportOutlineDTO) {
+        String id = reportOutlineService.createReportOutline(addReportOutlineDTO);
+        return ResultHelper.single(new ApmResponseUpsertVO(id));
+    }
+
+    @ApiOperation(value = "报告表详情")
+    @PostMapping("/get")
+    public CommonResult<ResponseReportOutlineItemVO> queryReportOutlineDetail(
+            @Valid @RequestBody QueryReportOutlineDetailDTO queryReportOutlineDetailDTO) {
+        ReportOutline reportOutline = reportOutlineService.queryReportOutlineDetail(queryReportOutlineDetailDTO.getId());
+        ResponseReportOutlineItemVO responseReportOutlineItemVO = ConvertReportOutlineTool.INSTANCE.convert2ResponseItemDTO(reportOutline);
+        return ResultHelper.single(responseReportOutlineItemVO);
+    }
+
+
+    @ApiOperation(value = "更新报告表")
+    @PostMapping("/update")
+    public CommonResult<ApmResponseUpsertVO> updateReportOutline(
+            @Valid @RequestBody UpdateReportOutlineDTO updateReportOutlineDTO) {
+        reportOutlineService.updateReportOutline(updateReportOutlineDTO);
+        return ResultHelper.single(new ApmResponseUpsertVO(updateReportOutlineDTO.getId()));
+    }
+
+
+    @ApiOperation(value = "删除报告表")
+    @PostMapping("/delete")
+    public CommonResult deleteReportOutline(
+            @RequestBody @Valid DeleteReportOutlineDTO deleteReportOutlineDTO) {
+        reportOutlineService.deleteReportOutline(deleteReportOutlineDTO.getId());
+        return ResultHelper.success();
+    }
+
+
+    @ApiOperation(value = "报告表列表")
+    @PostMapping("/query")
+    public CommonResult<PageList<ResponseReportOutlineListItemVO>> queryReportOutline(
+            @Valid @RequestBody QueryReportOutlineDTO queryReportOutlineDTO) {
+        List<ReportOutline> reportOutlineList = reportOutlineService.queryReportOutlineList(queryReportOutlineDTO);
+        List<ResponseReportOutlineListItemVO> resultList = ConvertReportOutlineTool.INSTANCE.convert2List(reportOutlineList);
+        return ResultHelper.multi(resultList);
+    }
+
+    //@ApiOperation(value = "报告表列表, 分页查询")
+    //@PostMapping("/query")
+    //public CommonResult<PageList<ResponseReportOutlineListItemVO>> queryReportOutline(
+    //        @Valid @RequestBody PageQueryReportOutlineDTO pageQueryReportOutlineDTO) {
+    //    IPage<ReportOutline> pagedList = reportOutlineService.pageQueryReportOutline(pageQueryReportOutlineDTO);
+    //    IPage<ResponseReportOutlineListItemVO> pagedResultList = pagedList.convert(item -> {
+    //        try {
+    //           return ConvertReportOutlineTool.INSTANCE.convert2ResponseListItemDTO(item);
+    //        } catch (Exception e) {
+    //            throw new IllegalArgumentException("分页查询,ReportOutline实体类转换为列表对象发生异常", e);
+    //        }
+    //    });
+    //    return ResultHelper.multi(pagedResultList);
+    //}
+}
+

+ 16 - 0
src/main/java/com/persagy/apm/energy/report/monthly/dao/ReportBusinessDetailMapper.java

@@ -0,0 +1,16 @@
+package com.persagy.apm.energy.report.monthly.dao;
+
+import com.persagy.apm.energy.report.monthly.model.ReportBusinessDetail;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ * 报告详情表(ReportBusinessDetail)dao层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:25
+ */
+@Mapper
+public interface ReportBusinessDetailMapper extends BaseMapper<ReportBusinessDetail> {
+
+}

+ 16 - 0
src/main/java/com/persagy/apm/energy/report/monthly/dao/ReportOutlineMapper.java

@@ -0,0 +1,16 @@
+package com.persagy.apm.energy.report.monthly.dao;
+
+import com.persagy.apm.energy.report.monthly.model.ReportOutline;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import org.apache.ibatis.annotations.Mapper;
+
+/**
+ * 报告表(ReportOutline)dao层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@Mapper
+public interface ReportOutlineMapper extends BaseMapper<ReportOutline> {
+
+}

+ 74 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/ConvertReportBusinessDetailTool.java

@@ -0,0 +1,74 @@
+package com.persagy.apm.energy.report.monthly.model;
+
+import org.mapstruct.*;
+import org.mapstruct.MappingTarget;
+import org.mapstruct.factory.Mappers;
+import com.persagy.apm.energy.report.monthly.model.vo.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+/**
+ * 报告详情表(ReportBusinessDetail) dto、vo、do转换工具类
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26 2021-05-17 09:55:26
+ */
+@Mapper(nullValueMappingStrategy = NullValueMappingStrategy.RETURN_DEFAULT,
+        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
+public interface ConvertReportBusinessDetailTool {
+
+    ConvertReportBusinessDetailTool INSTANCE = Mappers.getMapper(ConvertReportBusinessDetailTool.class);
+
+    /**
+     * do转换为ResponseItemVO
+     *
+     * @param reportBusinessDetail do对象
+     * @return ResponseItemVO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:26
+     */
+    ResponseReportBusinessDetailItemVO convert2ResponseItemDTO(ReportBusinessDetail reportBusinessDetail);
+
+    /**
+     * do转换为ResponseListItemVO
+     *
+     * @param reportBusinessDetail do对象
+     * @return ResponseListItemVO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:26
+     */
+    ResponseReportBusinessDetailListItemVO convert2ResponseListItemDTO(ReportBusinessDetail reportBusinessDetail);
+
+    /**
+     * do列表转换为ResponseListItemVO列表
+     *
+     * @param reportBusinessDetailList do列表
+     * @return ResponseListItemVO列表
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:26
+     */
+    List<ResponseReportBusinessDetailListItemVO> convert2List(List<ReportBusinessDetail> reportBusinessDetailList);
+
+    /**
+     * addDTO转换为do
+     *
+     * @param addReportBusinessDetailDTO addDTO
+     * @return 要创建的do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:26
+     */
+    ReportBusinessDetail convertAddDto2Entity(AddReportBusinessDetailDTO addReportBusinessDetailDTO);
+
+    /**
+     * updateDTO转换为实体
+     *
+     * @param reportBusinessDetail          更新前的do对象
+     * @param updateReportBusinessDetailDTO updateDTO
+     * @return 更新后的do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:26
+     */
+    ReportBusinessDetail convertUpdateDto2Entity(@MappingTarget ReportBusinessDetail reportBusinessDetail, UpdateReportBusinessDetailDTO updateReportBusinessDetailDTO);
+}
+

+ 74 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/ConvertReportOutlineTool.java

@@ -0,0 +1,74 @@
+package com.persagy.apm.energy.report.monthly.model;
+
+import org.mapstruct.*;
+import org.mapstruct.MappingTarget;
+import org.mapstruct.factory.Mappers;
+import com.persagy.apm.energy.report.monthly.model.vo.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+/**
+ * 报告表(ReportOutline) dto、vo、do转换工具类
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28 2021-05-17 09:55:28
+ */
+@Mapper(nullValueMappingStrategy = NullValueMappingStrategy.RETURN_DEFAULT,
+        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
+public interface ConvertReportOutlineTool {
+
+    ConvertReportOutlineTool INSTANCE = Mappers.getMapper(ConvertReportOutlineTool.class);
+
+    /**
+     * do转换为ResponseItemVO
+     *
+     * @param reportOutline do对象
+     * @return ResponseItemVO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:28
+     */
+    ResponseReportOutlineItemVO convert2ResponseItemDTO(ReportOutline reportOutline);
+
+    /**
+     * do转换为ResponseListItemVO
+     *
+     * @param reportOutline do对象
+     * @return ResponseListItemVO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:28
+     */
+    ResponseReportOutlineListItemVO convert2ResponseListItemDTO(ReportOutline reportOutline);
+
+    /**
+     * do列表转换为ResponseListItemVO列表
+     *
+     * @param reportOutlineList do列表
+     * @return ResponseListItemVO列表
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:28
+     */
+    List<ResponseReportOutlineListItemVO> convert2List(List<ReportOutline> reportOutlineList);
+
+    /**
+     * addDTO转换为do
+     *
+     * @param addReportOutlineDTO addDTO
+     * @return 要创建的do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:28
+     */
+    ReportOutline convertAddDto2Entity(AddReportOutlineDTO addReportOutlineDTO);
+
+    /**
+     * updateDTO转换为实体
+     *
+     * @param reportOutline          更新前的do对象
+     * @param updateReportOutlineDTO updateDTO
+     * @return 更新后的do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:28
+     */
+    ReportOutline convertUpdateDto2Entity(@MappingTarget ReportOutline reportOutline, UpdateReportOutlineDTO updateReportOutlineDTO);
+}
+

+ 78 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/ReportBusinessDetail.java

@@ -0,0 +1,78 @@
+package com.persagy.apm.energy.report.monthly.model;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import com.persagy.apm.common.model.entity.AuditableEntity;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 报告详情表(ReportBusinessDetail)实体类
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:25
+ */
+@EqualsAndHashCode(callSuper = true)
+@Data
+@ApiModel(description = "报告详情表")
+public class ReportBusinessDetail extends AuditableEntity<ReportBusinessDetail> implements Serializable {
+    private static final long serialVersionUID = -77817945215986879L;
+
+    @ApiModelProperty("在营项目用电量数据对象信息,项目月报使用此字段")
+    private Object openPower;
+
+    @ApiModelProperty("在营项目用电情况说明")
+    private String openPowerExplain;
+
+    @ApiModelProperty("可同比项目用电量数据对象信息")
+    private Object comparePower;
+
+    @ApiModelProperty("可同比项目用电情况说明")
+    private String comparePowerExplain;
+
+    @ApiModelProperty("在营项目能源费数据对象信息,项目月报使用此字段")
+    private Object openCost;
+
+    @ApiModelProperty("在营项目费用说明")
+    private String openCostExplain;
+
+    @ApiModelProperty("可同比项目能源费数据对象信息")
+    private Object compareCost;
+
+    @ApiModelProperty("可同比项目费用说明")
+    private String compareCostExplain;
+
+    @ApiModelProperty("能耗管理工作开展对象信息")
+    private Object job;
+
+    @ApiModelProperty("备注说明")
+    private String remark;
+
+    @ApiModelProperty("能耗管理平台运维对象信息")
+    private Object platform;
+
+    @ApiModelProperty("事项说明")
+    private String itemExplain;
+
+    @ApiModelProperty("关联的项目")
+    private Object projectIds;
+
+
+    public static String PROP_OPEN_POWER = "open_power";
+    public static String PROP_OPEN_POWER_EXPLAIN = "open_power_explain";
+    public static String PROP_COMPARE_POWER = "compare_power";
+    public static String PROP_COMPARE_POWER_EXPLAIN = "compare_power_explain";
+    public static String PROP_OPEN_COST = "open_cost";
+    public static String PROP_OPEN_COST_EXPLAIN = "open_cost_explain";
+    public static String PROP_COMPARE_COST = "compare_cost";
+    public static String PROP_COMPARE_COST_EXPLAIN = "compare_cost_explain";
+    public static String PROP_JOB = "job";
+    public static String PROP_REMARK = "remark";
+    public static String PROP_PLATFORM = "platform";
+    public static String PROP_ITEM_EXPLAIN = "item_explain";
+    public static String PROP_PROJECT_IDS = "project_ids";
+
+}

+ 54 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/ReportOutline.java

@@ -0,0 +1,54 @@
+package com.persagy.apm.energy.report.monthly.model;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import com.persagy.apm.common.model.entity.AuditableEntity;
+
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 报告表(ReportOutline)实体类
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@EqualsAndHashCode(callSuper = true)
+@Data
+@ApiModel(description = "报告表")
+public class ReportOutline extends AuditableEntity<ReportOutline> implements Serializable {
+    private static final long serialVersionUID = -70295079401649569L;
+
+    @ApiModelProperty("报告名称")
+    private String name;
+
+    @ApiModelProperty("报告日期")
+    private Date date;
+
+    @ApiModelProperty("报告所属")
+    private String belong;
+
+    @ApiModelProperty("报告类型")
+    private String type;
+
+    @ApiModelProperty("报告详情id")
+    private String detailId;
+
+    @ApiModelProperty("报告状态")
+    private Integer status;
+
+    @ApiModelProperty("备注")
+    private Object remark;
+
+
+    public static String PROP_NAME = "name";
+    public static String PROP_DATE = "date";
+    public static String PROP_BELONG = "belong";
+    public static String PROP_TYPE = "type";
+    public static String PROP_DETAIL_ID = "detail_id";
+    public static String PROP_STATUS = "status";
+    public static String PROP_REMARK = "remark";
+
+}

+ 71 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/AddReportBusinessDetailDTO.java

@@ -0,0 +1,71 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotNull;
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:25
+ */
+@Data
+@ApiModel(value = "创建报告详情表入参")
+public class AddReportBusinessDetailDTO {
+    @ApiModelProperty(value = "在营项目用电量数据对象信息,项目月报使用此字段", required = true)
+    @NotNull(message = "在营项目用电量数据对象信息,项目月报使用此字段不能为空") // todo 更新校验规则
+    private Object openPower;
+
+    @ApiModelProperty(value = "在营项目用电情况说明", required = true)
+    @NotNull(message = "在营项目用电情况说明不能为空") // todo 更新校验规则
+    private String openPowerExplain;
+
+    @ApiModelProperty(value = "可同比项目用电量数据对象信息", required = true)
+    @NotNull(message = "可同比项目用电量数据对象信息不能为空") // todo 更新校验规则
+    private Object comparePower;
+
+    @ApiModelProperty(value = "可同比项目用电情况说明", required = true)
+    @NotNull(message = "可同比项目用电情况说明不能为空") // todo 更新校验规则
+    private String comparePowerExplain;
+
+    @ApiModelProperty(value = "在营项目能源费数据对象信息,项目月报使用此字段", required = true)
+    @NotNull(message = "在营项目能源费数据对象信息,项目月报使用此字段不能为空") // todo 更新校验规则
+    private Object openCost;
+
+    @ApiModelProperty(value = "在营项目费用说明", required = true)
+    @NotNull(message = "在营项目费用说明不能为空") // todo 更新校验规则
+    private String openCostExplain;
+
+    @ApiModelProperty(value = "可同比项目能源费数据对象信息", required = true)
+    @NotNull(message = "可同比项目能源费数据对象信息不能为空") // todo 更新校验规则
+    private Object compareCost;
+
+    @ApiModelProperty(value = "可同比项目费用说明", required = true)
+    @NotNull(message = "可同比项目费用说明不能为空") // todo 更新校验规则
+    private String compareCostExplain;
+
+    @ApiModelProperty(value = "能耗管理工作开展对象信息", required = true)
+    @NotNull(message = "能耗管理工作开展对象信息不能为空") // todo 更新校验规则
+    private Object job;
+
+    @ApiModelProperty(value = "备注说明", required = true)
+    @NotNull(message = "备注说明不能为空") // todo 更新校验规则
+    private String remark;
+
+    @ApiModelProperty(value = "能耗管理平台运维对象信息", required = true)
+    @NotNull(message = "能耗管理平台运维对象信息不能为空") // todo 更新校验规则
+    private Object platform;
+
+    @ApiModelProperty(value = "事项说明", required = true)
+    @NotNull(message = "事项说明不能为空") // todo 更新校验规则
+    private String itemExplain;
+
+    @ApiModelProperty(value = "关联的项目", required = true)
+    @NotNull(message = "关联的项目不能为空") // todo 更新校验规则
+    private Object projectIds;
+
+}

+ 47 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/AddReportOutlineDTO.java

@@ -0,0 +1,47 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotNull;
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@Data
+@ApiModel(value = "创建报告表入参")
+public class AddReportOutlineDTO {
+    @ApiModelProperty(value = "报告名称", required = true)
+    @NotNull(message = "报告名称不能为空") // todo 更新校验规则
+    private String name;
+
+    @ApiModelProperty(value = "报告日期", required = true)
+    @NotNull(message = "报告日期不能为空") // todo 更新校验规则
+    private Date date;
+
+    @ApiModelProperty(value = "报告所属", required = true)
+    @NotNull(message = "报告所属不能为空") // todo 更新校验规则
+    private String belong;
+
+    @ApiModelProperty(value = "报告类型", required = true)
+    @NotNull(message = "报告类型不能为空") // todo 更新校验规则
+    private String type;
+
+    @ApiModelProperty(value = "报告详情id", required = true)
+    @NotNull(message = "报告详情id不能为空") // todo 更新校验规则
+    private String detailId;
+
+    @ApiModelProperty(value = "报告状态", required = true)
+    @NotNull(message = "报告状态不能为空") // todo 更新校验规则
+    private Integer status;
+
+    @ApiModelProperty(value = "备注", required = true)
+    @NotNull(message = "备注不能为空") // todo 更新校验规则
+    private Object remark;
+
+}

+ 20 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/DeleteReportBusinessDetailDTO.java

@@ -0,0 +1,20 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import javax.validation.constraints.NotNull;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "删除报告详情表入参")
+public class DeleteReportBusinessDetailDTO {
+    @NotNull(message = "id不能为空")
+    @ApiModelProperty(value = "主键", required = true)
+    private String id;
+
+}

+ 20 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/DeleteReportOutlineDTO.java

@@ -0,0 +1,20 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import javax.validation.constraints.NotNull;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28
+ */
+@Data
+@ApiModel(value = "删除报告表入参")
+public class DeleteReportOutlineDTO {
+    @NotNull(message = "id不能为空")
+    @ApiModelProperty(value = "报告id", required = true)
+    private String id;
+
+}

+ 62 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/PageQueryReportBusinessDetailDTO.java

@@ -0,0 +1,62 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.util.Date;
+
+import com.persagy.apm.common.model.dto.PageDTO;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@EqualsAndHashCode(callSuper = true)
+@Data
+@ApiModel(value = "分页查询报告详情表入参")
+public class PageQueryReportBusinessDetailDTO extends PageDTO {
+    @ApiModelProperty(value = "主键", required = true)
+    private String id;
+
+    @ApiModelProperty(value = "在营项目用电量数据对象信息,项目月报使用此字段", required = true)
+    private Object openPower;
+
+    @ApiModelProperty(value = "在营项目用电情况说明", required = true)
+    private String openPowerExplain;
+
+    @ApiModelProperty(value = "可同比项目用电量数据对象信息", required = true)
+    private Object comparePower;
+
+    @ApiModelProperty(value = "可同比项目用电情况说明", required = true)
+    private String comparePowerExplain;
+
+    @ApiModelProperty(value = "在营项目能源费数据对象信息,项目月报使用此字段", required = true)
+    private Object openCost;
+
+    @ApiModelProperty(value = "在营项目费用说明", required = true)
+    private String openCostExplain;
+
+    @ApiModelProperty(value = "可同比项目能源费数据对象信息", required = true)
+    private Object compareCost;
+
+    @ApiModelProperty(value = "可同比项目费用说明", required = true)
+    private String compareCostExplain;
+
+    @ApiModelProperty(value = "能耗管理工作开展对象信息", required = true)
+    private Object job;
+
+    @ApiModelProperty(value = "备注说明", required = true)
+    private String remark;
+
+    @ApiModelProperty(value = "能耗管理平台运维对象信息", required = true)
+    private Object platform;
+
+    @ApiModelProperty(value = "事项说明", required = true)
+    private String itemExplain;
+
+    @ApiModelProperty(value = "关联的项目", required = true)
+    private Object projectIds;
+
+}

+ 44 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/PageQueryReportOutlineDTO.java

@@ -0,0 +1,44 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import java.util.Date;
+
+import com.persagy.apm.common.model.dto.PageDTO;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28
+ */
+@EqualsAndHashCode(callSuper = true)
+@Data
+@ApiModel(value = "分页查询报告表入参")
+public class PageQueryReportOutlineDTO extends PageDTO {
+    @ApiModelProperty(value = "报告id", required = true)
+    private String id;
+
+    @ApiModelProperty(value = "报告名称", required = true)
+    private String name;
+
+    @ApiModelProperty(value = "报告日期", required = true)
+    private Date date;
+
+    @ApiModelProperty(value = "报告所属", required = true)
+    private String belong;
+
+    @ApiModelProperty(value = "报告类型", required = true)
+    private String type;
+
+    @ApiModelProperty(value = "报告详情id", required = true)
+    private String detailId;
+
+    @ApiModelProperty(value = "报告状态", required = true)
+    private Integer status;
+
+    @ApiModelProperty(value = "备注", required = true)
+    private Object remark;
+
+}

+ 55 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportBusinessDetailDTO.java

@@ -0,0 +1,55 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "查询报告详情表入参")
+public class QueryReportBusinessDetailDTO {
+    @ApiModelProperty(value = "在营项目用电量数据对象信息,项目月报使用此字段", required = true)
+    private Object openPower;
+
+    @ApiModelProperty(value = "在营项目用电情况说明", required = true)
+    private String openPowerExplain;
+
+    @ApiModelProperty(value = "可同比项目用电量数据对象信息", required = true)
+    private Object comparePower;
+
+    @ApiModelProperty(value = "可同比项目用电情况说明", required = true)
+    private String comparePowerExplain;
+
+    @ApiModelProperty(value = "在营项目能源费数据对象信息,项目月报使用此字段", required = true)
+    private Object openCost;
+
+    @ApiModelProperty(value = "在营项目费用说明", required = true)
+    private String openCostExplain;
+
+    @ApiModelProperty(value = "可同比项目能源费数据对象信息", required = true)
+    private Object compareCost;
+
+    @ApiModelProperty(value = "可同比项目费用说明", required = true)
+    private String compareCostExplain;
+
+    @ApiModelProperty(value = "能耗管理工作开展对象信息", required = true)
+    private Object job;
+
+    @ApiModelProperty(value = "备注说明", required = true)
+    private String remark;
+
+    @ApiModelProperty(value = "能耗管理平台运维对象信息", required = true)
+    private Object platform;
+
+    @ApiModelProperty(value = "事项说明", required = true)
+    private String itemExplain;
+
+    @ApiModelProperty(value = "关联的项目", required = true)
+    private Object projectIds;
+
+}

+ 20 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportBusinessDetailDetailDTO.java

@@ -0,0 +1,20 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import javax.validation.constraints.NotNull;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "获取报告详情表详情入参")
+public class QueryReportBusinessDetailDetailDTO {
+    @NotNull(message = "主键不能为空")
+    @ApiModelProperty(value = "主键", required = true)
+    private String id;
+
+}

+ 37 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportOutlineDTO.java

@@ -0,0 +1,37 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28
+ */
+@Data
+@ApiModel(value = "查询报告表入参")
+public class QueryReportOutlineDTO {
+    @ApiModelProperty(value = "报告名称", required = true)
+    private String name;
+
+    @ApiModelProperty(value = "报告日期", required = true)
+    private Date date;
+
+    @ApiModelProperty(value = "报告所属", required = true)
+    private String belong;
+
+    @ApiModelProperty(value = "报告类型", required = true)
+    private String type;
+
+    @ApiModelProperty(value = "报告详情id", required = true)
+    private String detailId;
+
+    @ApiModelProperty(value = "报告状态", required = true)
+    private Integer status;
+
+    @ApiModelProperty(value = "备注", required = true)
+    private Object remark;
+
+}

+ 20 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/QueryReportOutlineDetailDTO.java

@@ -0,0 +1,20 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import javax.validation.constraints.NotNull;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@Data
+@ApiModel(value = "获取报告表详情入参")
+public class QueryReportOutlineDetailDTO {
+    @NotNull(message = "报告id不能为空")
+    @ApiModelProperty(value = "报告id", required = true)
+    private String id;
+
+}

+ 75 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/UpdateReportBusinessDetailDTO.java

@@ -0,0 +1,75 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotNull;
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "更新报告详情表入参")
+public class UpdateReportBusinessDetailDTO {
+    @ApiModelProperty(value = "主键", required = true)
+    @NotNull(message = "主键不能为空") // todo 更新校验规则
+    private String id;
+
+    @ApiModelProperty(value = "在营项目用电量数据对象信息,项目月报使用此字段", required = true)
+    @NotNull(message = "在营项目用电量数据对象信息,项目月报使用此字段不能为空") // todo 更新校验规则
+    private Object openPower;
+
+    @ApiModelProperty(value = "在营项目用电情况说明", required = true)
+    @NotNull(message = "在营项目用电情况说明不能为空") // todo 更新校验规则
+    private String openPowerExplain;
+
+    @ApiModelProperty(value = "可同比项目用电量数据对象信息", required = true)
+    @NotNull(message = "可同比项目用电量数据对象信息不能为空") // todo 更新校验规则
+    private Object comparePower;
+
+    @ApiModelProperty(value = "可同比项目用电情况说明", required = true)
+    @NotNull(message = "可同比项目用电情况说明不能为空") // todo 更新校验规则
+    private String comparePowerExplain;
+
+    @ApiModelProperty(value = "在营项目能源费数据对象信息,项目月报使用此字段", required = true)
+    @NotNull(message = "在营项目能源费数据对象信息,项目月报使用此字段不能为空") // todo 更新校验规则
+    private Object openCost;
+
+    @ApiModelProperty(value = "在营项目费用说明", required = true)
+    @NotNull(message = "在营项目费用说明不能为空") // todo 更新校验规则
+    private String openCostExplain;
+
+    @ApiModelProperty(value = "可同比项目能源费数据对象信息", required = true)
+    @NotNull(message = "可同比项目能源费数据对象信息不能为空") // todo 更新校验规则
+    private Object compareCost;
+
+    @ApiModelProperty(value = "可同比项目费用说明", required = true)
+    @NotNull(message = "可同比项目费用说明不能为空") // todo 更新校验规则
+    private String compareCostExplain;
+
+    @ApiModelProperty(value = "能耗管理工作开展对象信息", required = true)
+    @NotNull(message = "能耗管理工作开展对象信息不能为空") // todo 更新校验规则
+    private Object job;
+
+    @ApiModelProperty(value = "备注说明", required = true)
+    @NotNull(message = "备注说明不能为空") // todo 更新校验规则
+    private String remark;
+
+    @ApiModelProperty(value = "能耗管理平台运维对象信息", required = true)
+    @NotNull(message = "能耗管理平台运维对象信息不能为空") // todo 更新校验规则
+    private Object platform;
+
+    @ApiModelProperty(value = "事项说明", required = true)
+    @NotNull(message = "事项说明不能为空") // todo 更新校验规则
+    private String itemExplain;
+
+    @ApiModelProperty(value = "关联的项目", required = true)
+    @NotNull(message = "关联的项目不能为空") // todo 更新校验规则
+    private Object projectIds;
+
+}

+ 51 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/dto/UpdateReportOutlineDTO.java

@@ -0,0 +1,51 @@
+package com.persagy.apm.energy.report.monthly.model.dto;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+
+import javax.validation.constraints.NotNull;
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@Data
+@ApiModel(value = "更新报告表入参")
+public class UpdateReportOutlineDTO {
+    @ApiModelProperty(value = "报告id", required = true)
+    @NotNull(message = "报告id不能为空") // todo 更新校验规则
+    private String id;
+
+    @ApiModelProperty(value = "报告名称", required = true)
+    @NotNull(message = "报告名称不能为空") // todo 更新校验规则
+    private String name;
+
+    @ApiModelProperty(value = "报告日期", required = true)
+    @NotNull(message = "报告日期不能为空") // todo 更新校验规则
+    private Date date;
+
+    @ApiModelProperty(value = "报告所属", required = true)
+    @NotNull(message = "报告所属不能为空") // todo 更新校验规则
+    private String belong;
+
+    @ApiModelProperty(value = "报告类型", required = true)
+    @NotNull(message = "报告类型不能为空") // todo 更新校验规则
+    private String type;
+
+    @ApiModelProperty(value = "报告详情id", required = true)
+    @NotNull(message = "报告详情id不能为空") // todo 更新校验规则
+    private String detailId;
+
+    @ApiModelProperty(value = "报告状态", required = true)
+    @NotNull(message = "报告状态不能为空") // todo 更新校验规则
+    private Integer status;
+
+    @ApiModelProperty(value = "备注", required = true)
+    @NotNull(message = "备注不能为空") // todo 更新校验规则
+    private Object remark;
+
+}

+ 73 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportBusinessDetailItemVO.java

@@ -0,0 +1,73 @@
+package com.persagy.apm.energy.report.monthly.model.vo;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "报告详情表返回结果参数")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class ResponseReportBusinessDetailItemVO {
+    @ApiModelProperty("主键")
+    private String id;
+
+    @ApiModelProperty("在营项目用电量数据对象信息,项目月报使用此字段")
+    private Object openPower;
+
+    @ApiModelProperty("在营项目用电情况说明")
+    private String openPowerExplain;
+
+    @ApiModelProperty("可同比项目用电量数据对象信息")
+    private Object comparePower;
+
+    @ApiModelProperty("可同比项目用电情况说明")
+    private String comparePowerExplain;
+
+    @ApiModelProperty("在营项目能源费数据对象信息,项目月报使用此字段")
+    private Object openCost;
+
+    @ApiModelProperty("在营项目费用说明")
+    private String openCostExplain;
+
+    @ApiModelProperty("可同比项目能源费数据对象信息")
+    private Object compareCost;
+
+    @ApiModelProperty("可同比项目费用说明")
+    private String compareCostExplain;
+
+    @ApiModelProperty("能耗管理工作开展对象信息")
+    private Object job;
+
+    @ApiModelProperty("备注说明")
+    private String remark;
+
+    @ApiModelProperty("能耗管理平台运维对象信息")
+    private Object platform;
+
+    @ApiModelProperty("事项说明")
+    private String itemExplain;
+
+    @ApiModelProperty("关联的项目")
+    private Object projectIds;
+
+    @ApiModelProperty("创建人")
+    private String creator;
+
+    @ApiModelProperty("创建时间")
+    private Date creationTime;
+
+    @ApiModelProperty("最后修改人")
+    private String modifier;
+
+    @ApiModelProperty("最后修改时间")
+    private Date modifiedTime;
+
+}

+ 73 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportBusinessDetailListItemVO.java

@@ -0,0 +1,73 @@
+package com.persagy.apm.energy.report.monthly.model.vo;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:26
+ */
+@Data
+@ApiModel(value = "报告详情表列表返回结果参数")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class ResponseReportBusinessDetailListItemVO {
+    @ApiModelProperty("主键")
+    private String id;
+
+    @ApiModelProperty("在营项目用电量数据对象信息,项目月报使用此字段")
+    private Object openPower;
+
+    @ApiModelProperty("在营项目用电情况说明")
+    private String openPowerExplain;
+
+    @ApiModelProperty("可同比项目用电量数据对象信息")
+    private Object comparePower;
+
+    @ApiModelProperty("可同比项目用电情况说明")
+    private String comparePowerExplain;
+
+    @ApiModelProperty("在营项目能源费数据对象信息,项目月报使用此字段")
+    private Object openCost;
+
+    @ApiModelProperty("在营项目费用说明")
+    private String openCostExplain;
+
+    @ApiModelProperty("可同比项目能源费数据对象信息")
+    private Object compareCost;
+
+    @ApiModelProperty("可同比项目费用说明")
+    private String compareCostExplain;
+
+    @ApiModelProperty("能耗管理工作开展对象信息")
+    private Object job;
+
+    @ApiModelProperty("备注说明")
+    private String remark;
+
+    @ApiModelProperty("能耗管理平台运维对象信息")
+    private Object platform;
+
+    @ApiModelProperty("事项说明")
+    private String itemExplain;
+
+    @ApiModelProperty("关联的项目")
+    private Object projectIds;
+
+    @ApiModelProperty("创建人")
+    private String creator;
+
+    @ApiModelProperty("创建时间")
+    private Date creationTime;
+
+    @ApiModelProperty("最后修改人")
+    private String modifier;
+
+    @ApiModelProperty("最后修改时间")
+    private Date modifiedTime;
+
+}

+ 55 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportOutlineItemVO.java

@@ -0,0 +1,55 @@
+package com.persagy.apm.energy.report.monthly.model.vo;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28
+ */
+@Data
+@ApiModel(value = "报告表返回结果参数")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class ResponseReportOutlineItemVO {
+    @ApiModelProperty("报告id")
+    private String id;
+
+    @ApiModelProperty("报告名称")
+    private String name;
+
+    @ApiModelProperty("报告日期")
+    private Date date;
+
+    @ApiModelProperty("报告所属")
+    private String belong;
+
+    @ApiModelProperty("报告类型")
+    private String type;
+
+    @ApiModelProperty("报告详情id")
+    private String detailId;
+
+    @ApiModelProperty("报告状态")
+    private Integer status;
+
+    @ApiModelProperty("备注")
+    private Object remark;
+
+    @ApiModelProperty("创建人")
+    private String creator;
+
+    @ApiModelProperty("创建时间")
+    private Date creationTime;
+
+    @ApiModelProperty("最后修改人")
+    private String modifier;
+
+    @ApiModelProperty("最后修改时间")
+    private Date modifiedTime;
+
+}

+ 55 - 0
src/main/java/com/persagy/apm/energy/report/monthly/model/vo/ResponseReportOutlineListItemVO.java

@@ -0,0 +1,55 @@
+package com.persagy.apm.energy.report.monthly.model.vo;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+
+/**
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:28
+ */
+@Data
+@ApiModel(value = "报告表列表返回结果参数")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class ResponseReportOutlineListItemVO {
+    @ApiModelProperty("报告id")
+    private String id;
+
+    @ApiModelProperty("报告名称")
+    private String name;
+
+    @ApiModelProperty("报告日期")
+    private Date date;
+
+    @ApiModelProperty("报告所属")
+    private String belong;
+
+    @ApiModelProperty("报告类型")
+    private String type;
+
+    @ApiModelProperty("报告详情id")
+    private String detailId;
+
+    @ApiModelProperty("报告状态")
+    private Integer status;
+
+    @ApiModelProperty("备注")
+    private Object remark;
+
+    @ApiModelProperty("创建人")
+    private String creator;
+
+    @ApiModelProperty("创建时间")
+    private Date creationTime;
+
+    @ApiModelProperty("最后修改人")
+    private String modifier;
+
+    @ApiModelProperty("最后修改时间")
+    private Date modifiedTime;
+
+}

+ 77 - 0
src/main/java/com/persagy/apm/energy/report/monthly/service/IReportBusinessDetailService.java

@@ -0,0 +1,77 @@
+package com.persagy.apm.energy.report.monthly.service;
+
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * 报告详情表(ReportBusinessDetail) service接口
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:24
+ */
+public interface IReportBusinessDetailService {
+
+    /**
+     * 创建报告详情表
+     *
+     * @param addReportBusinessDetailDTO addDTO
+     * @return 报告详情表主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    String createReportBusinessDetail(AddReportBusinessDetailDTO addReportBusinessDetailDTO);
+
+    /**
+     * 报告详情表详情
+     *
+     * @param id 主键
+     * @return 报告详情表do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    ReportBusinessDetail queryReportBusinessDetailDetail(String id);
+
+    /**
+     * 更新报告详情表
+     *
+     * @param updateReportBusinessDetailDTO updateDTO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    void updateReportBusinessDetail(UpdateReportBusinessDetailDTO updateReportBusinessDetailDTO);
+
+    /**
+     * 删除报告详情表
+     *
+     * @param id 主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    void deleteReportBusinessDetail(String id);
+
+    /**
+     * 查询报告详情表
+     *
+     * @param queryReportBusinessDetailDTO queryDTO
+     * @return List<ReportBusinessDetail>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    List<ReportBusinessDetail> queryReportBusinessDetailList(QueryReportBusinessDetailDTO queryReportBusinessDetailDTO);
+
+    /**
+     * 分页查询报告详情表
+     *
+     * @param pageQueryReportBusinessDetailDTO pageQueryDTO
+     * @return IPage<ReportBusinessDetail>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    IPage<ReportBusinessDetail> pageQueryReportBusinessDetail(PageQueryReportBusinessDetailDTO pageQueryReportBusinessDetailDTO);
+}

+ 77 - 0
src/main/java/com/persagy/apm/energy/report/monthly/service/IReportOutlineService.java

@@ -0,0 +1,77 @@
+package com.persagy.apm.energy.report.monthly.service;
+
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * 报告表(ReportOutline) service接口
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+public interface IReportOutlineService {
+
+    /**
+     * 创建报告表
+     *
+     * @param addReportOutlineDTO addDTO
+     * @return 报告表主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    String createReportOutline(AddReportOutlineDTO addReportOutlineDTO);
+
+    /**
+     * 报告表详情
+     *
+     * @param id 主键
+     * @return 报告表do对象
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    ReportOutline queryReportOutlineDetail(String id);
+
+    /**
+     * 更新报告表
+     *
+     * @param updateReportOutlineDTO updateDTO
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    void updateReportOutline(UpdateReportOutlineDTO updateReportOutlineDTO);
+
+    /**
+     * 删除报告表
+     *
+     * @param id 主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    void deleteReportOutline(String id);
+
+    /**
+     * 查询报告表
+     *
+     * @param queryReportOutlineDTO queryDTO
+     * @return List<ReportOutline>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    List<ReportOutline> queryReportOutlineList(QueryReportOutlineDTO queryReportOutlineDTO);
+
+    /**
+     * 分页查询报告表
+     *
+     * @param pageQueryReportOutlineDTO pageQueryDTO
+     * @return IPage<ReportOutline>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    IPage<ReportOutline> pageQueryReportOutline(PageQueryReportOutlineDTO pageQueryReportOutlineDTO);
+}

+ 295 - 0
src/main/java/com/persagy/apm/energy/report/monthly/service/impl/ReportBusinessDetailServiceImpl.java

@@ -0,0 +1,295 @@
+package com.persagy.apm.energy.report.monthly.service.impl;
+
+import com.persagy.apm.common.context.AppContext;
+import com.persagy.apm.energy.report.monthly.dao.ReportBusinessDetailMapper;
+import com.persagy.apm.energy.report.monthly.service.IReportBusinessDetailService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import org.apache.commons.lang.StringUtils;
+import com.persagy.apm.common.constant.enums.ValidEnum;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.google.common.base.CaseFormat;
+import com.persagy.apm.common.model.dto.Sort;
+import org.springframework.util.CollectionUtils;
+
+/**
+ * 报告详情表(ReportBusinessDetail) service层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:24
+ */
+@Service
+public class ReportBusinessDetailServiceImpl extends ServiceImpl<ReportBusinessDetailMapper, ReportBusinessDetail>
+        implements IReportBusinessDetailService {
+
+    /**
+     * 创建报告详情表
+     *
+     * @return 报告详情表主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public String createReportBusinessDetail(AddReportBusinessDetailDTO addReportBusinessDetailDTO) {
+        ReportBusinessDetail reportBusinessDetail = ConvertReportBusinessDetailTool.INSTANCE.convertAddDto2Entity(addReportBusinessDetailDTO);
+        // 设置默认值
+        setDefaultValue(reportBusinessDetail);
+        save(reportBusinessDetail);
+        return reportBusinessDetail.getId();
+    }
+
+    /**
+     * 如果某些字段没有赋值,使用默认的值
+     *
+     * @param reportBusinessDetail 报告详情表实体
+     * @author lixing
+     * @version V1.0 2021/3/12 12:29 下午
+     */
+    private void setDefaultValue(ReportBusinessDetail reportBusinessDetail) {
+        reportBusinessDetail.setCreator(AppContext.getContext().getAccountId());
+        // todo 其他默认的属性
+
+    }
+
+    /**
+     * 报告详情表详情
+     *
+     * @param id 主键
+     * @return 部门do类
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public ReportBusinessDetail queryReportBusinessDetailDetail(String id) {
+        ReportBusinessDetail reportBusinessDetail = getById(id);
+        if (reportBusinessDetail == null) {
+            throw new IllegalArgumentException("查看ReportBusinessDetail详情时发生异常,找不到要查看的记录,id=" + id);
+        }
+        return reportBusinessDetail;
+    }
+
+    /**
+     * 更新报告详情表
+     *
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public void updateReportBusinessDetail(UpdateReportBusinessDetailDTO updateReportBusinessDetailDTO) {
+        ReportBusinessDetail reportBusinessDetail = getById(updateReportBusinessDetailDTO.getId());
+        reportBusinessDetail = ConvertReportBusinessDetailTool.INSTANCE.convertUpdateDto2Entity(reportBusinessDetail, updateReportBusinessDetailDTO);
+        reportBusinessDetail.setModifier(AppContext.getContext().getAccountId());
+        updateById(reportBusinessDetail);
+    }
+
+    /**
+     * 校验报告详情表是否可删除
+     *
+     * @param id 报告详情表主键
+     * @return 报告详情表do类
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    public ReportBusinessDetail checkDeletable(String id) {
+        if (id == null) {
+            throw new IllegalArgumentException("删除ReportBusinessDetail时发生异常,主键为空");
+        }
+
+        ReportBusinessDetail reportBusinessDetail = getById(id);
+
+        if (reportBusinessDetail == null) {
+            throw new IllegalArgumentException("删除ReportBusinessDetail时发生异常,找不到要删除的数据,id:" + id);
+        }
+
+        return reportBusinessDetail;
+    }
+
+    /**
+     * 删除报告详情表
+     *
+     * @param id 主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public void deleteReportBusinessDetail(String id) {
+        // 校验是否可删除
+        ReportBusinessDetail reportBusinessDetail = checkDeletable(id);
+
+        reportBusinessDetail.setValid(ValidEnum.FALSE.getType());
+        updateById(reportBusinessDetail);
+    }
+
+    /**
+     * 查询报告详情表
+     *
+     * @return List<ReportBusinessDetail>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public List<ReportBusinessDetail> queryReportBusinessDetailList(QueryReportBusinessDetailDTO queryReportBusinessDetailDTO) {
+        QueryWrapper<ReportBusinessDetail> queryWrapper = new QueryWrapper<>();
+        queryWrapper.eq(ReportBusinessDetail.PROP_VALID, ValidEnum.TRUE.getType());
+        // 默认按创建时间倒序排序
+        queryWrapper.orderBy(true, false, ReportBusinessDetail.PROP_CREATIONTIME);
+
+        if (queryReportBusinessDetailDTO != null) {
+
+            if (queryReportBusinessDetailDTO.getOpenPower() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_OPEN_POWER, queryReportBusinessDetailDTO.getOpenPower());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getOpenPowerExplain())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_OPEN_POWER_EXPLAIN, queryReportBusinessDetailDTO.getOpenPowerExplain());
+            }
+
+            if (queryReportBusinessDetailDTO.getComparePower() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_COMPARE_POWER, queryReportBusinessDetailDTO.getComparePower());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getComparePowerExplain())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_COMPARE_POWER_EXPLAIN, queryReportBusinessDetailDTO.getComparePowerExplain());
+            }
+
+            if (queryReportBusinessDetailDTO.getOpenCost() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_OPEN_COST, queryReportBusinessDetailDTO.getOpenCost());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getOpenCostExplain())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_OPEN_COST_EXPLAIN, queryReportBusinessDetailDTO.getOpenCostExplain());
+            }
+
+            if (queryReportBusinessDetailDTO.getCompareCost() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_COMPARE_COST, queryReportBusinessDetailDTO.getCompareCost());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getCompareCostExplain())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_COMPARE_COST_EXPLAIN, queryReportBusinessDetailDTO.getCompareCostExplain());
+            }
+
+            if (queryReportBusinessDetailDTO.getJob() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_JOB, queryReportBusinessDetailDTO.getJob());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getRemark())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_REMARK, queryReportBusinessDetailDTO.getRemark());
+            }
+
+            if (queryReportBusinessDetailDTO.getPlatform() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_PLATFORM, queryReportBusinessDetailDTO.getPlatform());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportBusinessDetailDTO.getItemExplain())) {
+                queryWrapper.like(ReportBusinessDetail.PROP_ITEM_EXPLAIN, queryReportBusinessDetailDTO.getItemExplain());
+            }
+
+            if (queryReportBusinessDetailDTO.getProjectIds() != null) {
+                queryWrapper.eq(ReportBusinessDetail.PROP_PROJECT_IDS, queryReportBusinessDetailDTO.getProjectIds());
+            }
+
+        }
+
+        return list(queryWrapper);
+    }
+
+    /**
+     * 分页查询报告详情表
+     *
+     * @return IPage<ReportBusinessDetail>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:24
+     */
+    @Override
+    public IPage<ReportBusinessDetail> pageQueryReportBusinessDetail(PageQueryReportBusinessDetailDTO pageQueryReportBusinessDetailDTO) {
+        QueryWrapper<ReportBusinessDetail> queryWrapper = new QueryWrapper<>();
+        queryWrapper.eq(ReportBusinessDetail.PROP_VALID, ValidEnum.TRUE.getType());
+        // 这里认为pageQueryDTO是经过校验的,肯定包含分页信息
+        IPage<ReportBusinessDetail> pageParam = new Page<>(pageQueryReportBusinessDetailDTO.getPage(), pageQueryReportBusinessDetailDTO.getSize(), true);
+        // 排序信息
+        if (CollectionUtils.isEmpty(pageQueryReportBusinessDetailDTO.getOrders())) {
+            // 默认按创建时间倒序排序
+            queryWrapper.orderBy(true, false, ReportBusinessDetail.PROP_CREATIONTIME);
+        } else {
+            List<Sort> orders = pageQueryReportBusinessDetailDTO.getOrders();
+            for (Sort sort : orders) {
+                // 将驼峰转换为下划线格式
+                sort.setColumn(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, sort.getColumn()));
+                queryWrapper.orderBy(true, sort.isAsc(), sort.getColumn());
+            }
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getOpenPower() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_OPEN_POWER, pageQueryReportBusinessDetailDTO.getOpenPower());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getOpenPowerExplain())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_OPEN_POWER_EXPLAIN, pageQueryReportBusinessDetailDTO.getOpenPowerExplain());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getComparePower() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_COMPARE_POWER, pageQueryReportBusinessDetailDTO.getComparePower());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getComparePowerExplain())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_COMPARE_POWER_EXPLAIN, pageQueryReportBusinessDetailDTO.getComparePowerExplain());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getOpenCost() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_OPEN_COST, pageQueryReportBusinessDetailDTO.getOpenCost());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getOpenCostExplain())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_OPEN_COST_EXPLAIN, pageQueryReportBusinessDetailDTO.getOpenCostExplain());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getCompareCost() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_COMPARE_COST, pageQueryReportBusinessDetailDTO.getCompareCost());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getCompareCostExplain())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_COMPARE_COST_EXPLAIN, pageQueryReportBusinessDetailDTO.getCompareCostExplain());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getJob() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_JOB, pageQueryReportBusinessDetailDTO.getJob());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getRemark())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_REMARK, pageQueryReportBusinessDetailDTO.getRemark());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getPlatform() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_PLATFORM, pageQueryReportBusinessDetailDTO.getPlatform());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportBusinessDetailDTO.getItemExplain())) {
+            queryWrapper.like(ReportBusinessDetail.PROP_ITEM_EXPLAIN, pageQueryReportBusinessDetailDTO.getItemExplain());
+        }
+
+        if (pageQueryReportBusinessDetailDTO.getProjectIds() != null) {
+            queryWrapper.eq(ReportBusinessDetail.PROP_PROJECT_IDS, pageQueryReportBusinessDetailDTO.getProjectIds());
+        }
+
+        return getBaseMapper().selectPage(pageParam, queryWrapper);
+    }
+}

+ 243 - 0
src/main/java/com/persagy/apm/energy/report/monthly/service/impl/ReportOutlineServiceImpl.java

@@ -0,0 +1,243 @@
+package com.persagy.apm.energy.report.monthly.service.impl;
+
+import com.persagy.apm.common.context.AppContext;
+import com.persagy.apm.energy.report.monthly.dao.ReportOutlineMapper;
+import com.persagy.apm.energy.report.monthly.service.IReportOutlineService;
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import org.springframework.stereotype.Service;
+import org.apache.commons.lang.StringUtils;
+import com.persagy.apm.common.constant.enums.ValidEnum;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.persagy.apm.energy.report.monthly.model.*;
+import com.persagy.apm.energy.report.monthly.model.dto.*;
+
+import java.util.List;
+
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import com.google.common.base.CaseFormat;
+import com.persagy.apm.common.model.dto.Sort;
+import org.springframework.util.CollectionUtils;
+
+/**
+ * 报告表(ReportOutline) service层
+ *
+ * @author lixing
+ * @version V1.0 2021-05-17 09:55:27
+ */
+@Service
+public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, ReportOutline>
+        implements IReportOutlineService {
+
+    /**
+     * 创建报告表
+     *
+     * @return 报告表主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public String createReportOutline(AddReportOutlineDTO addReportOutlineDTO) {
+        ReportOutline reportOutline = ConvertReportOutlineTool.INSTANCE.convertAddDto2Entity(addReportOutlineDTO);
+        // 设置默认值
+        setDefaultValue(reportOutline);
+        save(reportOutline);
+        return reportOutline.getId();
+    }
+
+    /**
+     * 如果某些字段没有赋值,使用默认的值
+     *
+     * @param reportOutline 报告表实体
+     * @author lixing
+     * @version V1.0 2021/3/12 12:29 下午
+     */
+    private void setDefaultValue(ReportOutline reportOutline) {
+        reportOutline.setCreator(AppContext.getContext().getAccountId());
+        // todo 其他默认的属性
+
+    }
+
+    /**
+     * 报告表详情
+     *
+     * @param id 主键
+     * @return 部门do类
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public ReportOutline queryReportOutlineDetail(String id) {
+        ReportOutline reportOutline = getById(id);
+        if (reportOutline == null) {
+            throw new IllegalArgumentException("查看ReportOutline详情时发生异常,找不到要查看的记录,id=" + id);
+        }
+        return reportOutline;
+    }
+
+    /**
+     * 更新报告表
+     *
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public void updateReportOutline(UpdateReportOutlineDTO updateReportOutlineDTO) {
+        ReportOutline reportOutline = getById(updateReportOutlineDTO.getId());
+        reportOutline = ConvertReportOutlineTool.INSTANCE.convertUpdateDto2Entity(reportOutline, updateReportOutlineDTO);
+        reportOutline.setModifier(AppContext.getContext().getAccountId());
+        updateById(reportOutline);
+    }
+
+    /**
+     * 校验报告表是否可删除
+     *
+     * @param id 报告表主键
+     * @return 报告表do类
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    public ReportOutline checkDeletable(String id) {
+        if (id == null) {
+            throw new IllegalArgumentException("删除ReportOutline时发生异常,主键为空");
+        }
+
+        ReportOutline reportOutline = getById(id);
+
+        if (reportOutline == null) {
+            throw new IllegalArgumentException("删除ReportOutline时发生异常,找不到要删除的数据,id:" + id);
+        }
+
+        return reportOutline;
+    }
+
+    /**
+     * 删除报告表
+     *
+     * @param id 主键
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public void deleteReportOutline(String id) {
+        // 校验是否可删除
+        ReportOutline reportOutline = checkDeletable(id);
+
+        reportOutline.setValid(ValidEnum.FALSE.getType());
+        updateById(reportOutline);
+    }
+
+    /**
+     * 查询报告表
+     *
+     * @return List<ReportOutline>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public List<ReportOutline> queryReportOutlineList(QueryReportOutlineDTO queryReportOutlineDTO) {
+        QueryWrapper<ReportOutline> queryWrapper = new QueryWrapper<>();
+        queryWrapper.eq(ReportOutline.PROP_VALID, ValidEnum.TRUE.getType());
+        // 默认按创建时间倒序排序
+        queryWrapper.orderBy(true, false, ReportOutline.PROP_CREATIONTIME);
+
+        if (queryReportOutlineDTO != null) {
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportOutlineDTO.getName())) {
+                queryWrapper.like(ReportOutline.PROP_NAME, queryReportOutlineDTO.getName());
+            }
+
+            if (queryReportOutlineDTO.getDate() != null) {
+                queryWrapper.eq(ReportOutline.PROP_DATE, queryReportOutlineDTO.getDate());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportOutlineDTO.getBelong())) {
+                queryWrapper.like(ReportOutline.PROP_BELONG, queryReportOutlineDTO.getBelong());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportOutlineDTO.getType())) {
+                queryWrapper.like(ReportOutline.PROP_TYPE, queryReportOutlineDTO.getType());
+            }
+
+            // todo 需判断使用like还是eq
+            if (StringUtils.isNotEmpty(queryReportOutlineDTO.getDetailId())) {
+                queryWrapper.like(ReportOutline.PROP_DETAIL_ID, queryReportOutlineDTO.getDetailId());
+            }
+
+            if (queryReportOutlineDTO.getStatus() != null) {
+                queryWrapper.eq(ReportOutline.PROP_STATUS, queryReportOutlineDTO.getStatus());
+            }
+
+            if (queryReportOutlineDTO.getRemark() != null) {
+                queryWrapper.eq(ReportOutline.PROP_REMARK, queryReportOutlineDTO.getRemark());
+            }
+
+        }
+
+        return list(queryWrapper);
+    }
+
+    /**
+     * 分页查询报告表
+     *
+     * @return IPage<ReportOutline>
+     * @author lixing
+     * @version V1.0 2021-05-17 09:55:27
+     */
+    @Override
+    public IPage<ReportOutline> pageQueryReportOutline(PageQueryReportOutlineDTO pageQueryReportOutlineDTO) {
+        QueryWrapper<ReportOutline> queryWrapper = new QueryWrapper<>();
+        queryWrapper.eq(ReportOutline.PROP_VALID, ValidEnum.TRUE.getType());
+        // 这里认为pageQueryDTO是经过校验的,肯定包含分页信息
+        IPage<ReportOutline> pageParam = new Page<>(pageQueryReportOutlineDTO.getPage(), pageQueryReportOutlineDTO.getSize(), true);
+        // 排序信息
+        if (CollectionUtils.isEmpty(pageQueryReportOutlineDTO.getOrders())) {
+            // 默认按创建时间倒序排序
+            queryWrapper.orderBy(true, false, ReportOutline.PROP_CREATIONTIME);
+        } else {
+            List<Sort> orders = pageQueryReportOutlineDTO.getOrders();
+            for (Sort sort : orders) {
+                // 将驼峰转换为下划线格式
+                sort.setColumn(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, sort.getColumn()));
+                queryWrapper.orderBy(true, sort.isAsc(), sort.getColumn());
+            }
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportOutlineDTO.getName())) {
+            queryWrapper.like(ReportOutline.PROP_NAME, pageQueryReportOutlineDTO.getName());
+        }
+
+        if (pageQueryReportOutlineDTO.getDate() != null) {
+            queryWrapper.eq(ReportOutline.PROP_DATE, pageQueryReportOutlineDTO.getDate());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportOutlineDTO.getBelong())) {
+            queryWrapper.like(ReportOutline.PROP_BELONG, pageQueryReportOutlineDTO.getBelong());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportOutlineDTO.getType())) {
+            queryWrapper.like(ReportOutline.PROP_TYPE, pageQueryReportOutlineDTO.getType());
+        }
+
+        // todo 需判断使用like还是eq
+        if (StringUtils.isNotEmpty(pageQueryReportOutlineDTO.getDetailId())) {
+            queryWrapper.like(ReportOutline.PROP_DETAIL_ID, pageQueryReportOutlineDTO.getDetailId());
+        }
+
+        if (pageQueryReportOutlineDTO.getStatus() != null) {
+            queryWrapper.eq(ReportOutline.PROP_STATUS, pageQueryReportOutlineDTO.getStatus());
+        }
+
+        if (pageQueryReportOutlineDTO.getRemark() != null) {
+            queryWrapper.eq(ReportOutline.PROP_REMARK, pageQueryReportOutlineDTO.getRemark());
+        }
+
+        return getBaseMapper().selectPage(pageParam, queryWrapper);
+    }
+}

+ 6 - 0
src/main/resources/bootstrap.yml

@@ -0,0 +1,6 @@
+spring:
+  application:
+    name: energy-report
+
+
+

+ 27 - 0
src/main/resources/mapper/ReportBusinessDetailMapper.xml

@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.persagy.apm.energy.report.monthly.dao.ReportBusinessDetailMapper">
+    <resultMap id="ReportBusinessDetailMap" type="com.persagy.apm.energy.report.monthly.model.ReportBusinessDetail">
+        <result column="id" property="id"/>
+        <result column="open_power" property="openPower"/>
+        <result column="open_power_explain" property="openPowerExplain"/>
+        <result column="compare_power" property="comparePower"/>
+        <result column="compare_power_explain" property="comparePowerExplain"/>
+        <result column="open_cost" property="openCost"/>
+        <result column="open_cost_explain" property="openCostExplain"/>
+        <result column="compare_cost" property="compareCost"/>
+        <result column="compare_cost_explain" property="compareCostExplain"/>
+        <result column="job" property="job"/>
+        <result column="remark" property="remark"/>
+        <result column="platform" property="platform"/>
+        <result column="item_explain" property="itemExplain"/>
+        <result column="project_ids" property="projectIds"/>
+        <result column="ts" property="ts"/>
+        <result column="creator" property="creator"/>
+        <result column="creation_time" property="creationTime"/>
+        <result column="modifier" property="modifier"/>
+        <result column="modified_time" property="modifiedTime"/>
+        <result column="valid" property="valid"/>
+    </resultMap>
+</mapper>
+

+ 21 - 0
src/main/resources/mapper/ReportOutlineMapper.xml

@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.persagy.apm.energy.report.monthly.dao.ReportOutlineMapper">
+    <resultMap id="ReportOutlineMap" type="com.persagy.apm.energy.report.monthly.model.ReportOutline">
+        <result column="id" property="id"/>
+        <result column="name" property="name"/>
+        <result column="date" property="date"/>
+        <result column="belong" property="belong"/>
+        <result column="type" property="type"/>
+        <result column="detail_id" property="detailId"/>
+        <result column="status" property="status"/>
+        <result column="remark" property="remark"/>
+        <result column="ts" property="ts"/>
+        <result column="creator" property="creator"/>
+        <result column="creation_time" property="creationTime"/>
+        <result column="modifier" property="modifier"/>
+        <result column="modified_time" property="modifiedTime"/>
+        <result column="valid" property="valid"/>
+    </resultMap>
+</mapper>
+