forked from luyan/epmet-cloud-lingshan
12 changed files with 129 additions and 13 deletions
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dataaggre.dto.datastats.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 项目月数据-接口返参 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class FactAgencyProjectMonthResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 466974582608407121L; |
||||
|
//组织Id
|
||||
|
private String agencyId; |
||||
|
//月维度Id
|
||||
|
private String monthId; |
||||
|
//当月项目总数 【当前组织及下级前一月新增项目数】
|
||||
|
private Integer projectIncr = 0; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue