添加功能

This commit is contained in:
马宝龙
2026-06-27 01:20:13 +08:00
parent 641942129f
commit bfc69faa8c
2 changed files with 20 additions and 0 deletions

View File

@@ -76,4 +76,20 @@ public class KeyGroupServiceSituationOverviewVo implements Serializable {
* 帮扶资金投放环比 * 帮扶资金投放环比
*/ */
private BigDecimal helpFundPutCountMom; private BigDecimal helpFundPutCountMom;
/**
* 整体满意度
*/
private BigDecimal overallSatisfaction;
/**
* 整体满意度环比
*/
private BigDecimal overallSatisfactionMom;
/**
* 主要问题提及
*/
private Long majorProblemMentionedCount;
/**
* 主要问题类型
*/
private Long majorProblemTypeCount;
} }

View File

@@ -50,6 +50,10 @@ public class AnalysisKeyGroupServiceSituationServiceImpl implements AnalysisKeyG
.afterHelpEmploymentRateMom(BigDecimal.valueOf(1.8)) .afterHelpEmploymentRateMom(BigDecimal.valueOf(1.8))
.helpFundPutCount(3200L) .helpFundPutCount(3200L)
.helpFundPutCountMom(BigDecimal.valueOf(12.5)) .helpFundPutCountMom(BigDecimal.valueOf(12.5))
.overallSatisfaction(BigDecimal.valueOf(4.5))
.overallSatisfactionMom(BigDecimal.valueOf(2.5))
.majorProblemMentionedCount(657L)
.majorProblemTypeCount(5L)
.build(); .build();
} }