7 changed files with 110 additions and 9 deletions
-
25modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/controller/CqcCarbonReportController.java
-
20modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java
-
14modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountParam.java
-
6modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/mapper/CqcCarbonReportMapper.java
-
3modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/service/CqcCarbonReportService.java
-
39modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/service/impl/CqcCarbonReportServiceImpl.java
-
10modules/cqc-service/src/main/resources/mapper/CqcCarbonReportMapper.xml
@ -0,0 +1,20 @@ |
|||
package com.thing.cqc.cqcCarbonReport.dto; |
|||
|
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
@Schema(description = "状态统计") |
|||
public class CqcCarbonReportCountInfo { |
|||
|
|||
|
|||
@Schema(description = "待提交") |
|||
private Long pendingSubmitted; |
|||
@Schema(description = "待发证") |
|||
private Long pendingCertification; |
|||
@Schema(description = "已发证") |
|||
private Long issued; |
|||
|
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,14 @@ |
|||
package com.thing.cqc.cqcCarbonReport.dto; |
|||
|
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
@Schema(description = "状态统计") |
|||
public class CqcCarbonReportCountParam { |
|||
|
|||
|
|||
private String status; |
|||
private Long count; |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue