feat: 添加项目状态统计 VO 类

This commit is contained in:
wkc
2026-02-27 17:25:20 +08:00
parent 083693c7e8
commit 5220813624

View File

@@ -0,0 +1,23 @@
package com.ruoyi.ccdi.project.domain.vo;
import lombok.Data;
/**
* 项目状态统计VO
*
* @author ruoyi
*/
@Data
public class CcdiProjectStatusCountsVO {
/** 全部项目总数 */
private Long all;
/** 进行中项目数(状态0) */
private Long status0;
/** 已完成项目数(状态1) */
private Long status1;
/** 已归档项目数(状态2) */
private Long status2;
}