提案整改
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
package com.budwk.app.zhgh.staffbenefit.medicalMutualAid.medical.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* @author Codex
|
||||
* @description 医疗互助分类统计返回值
|
||||
*/
|
||||
@Data
|
||||
public class MedicalDashboardCategoryStatVO {
|
||||
|
||||
/**
|
||||
* 分类编码。
|
||||
* 不同接口场景下可能表示在职状态编码、人员类型编码、疾病ID 等。
|
||||
*/
|
||||
private String code;
|
||||
|
||||
/**
|
||||
* 分类名称,用于前端直接展示图表/表格标题。
|
||||
*/
|
||||
private String name;
|
||||
|
||||
/**
|
||||
* 当前分类下的已办结申请数
|
||||
*/
|
||||
private Long applyCount;
|
||||
|
||||
/**
|
||||
* 当前分类下的已办结补助金额合计
|
||||
*/
|
||||
private BigDecimal subsidyMoney;
|
||||
}
|
||||
Reference in New Issue
Block a user