You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
486 B
Java
24 lines
486 B
Java
package com.engine.organization.entity.personnelcard;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @author:dxfeng
|
|
* @createTime: 2022/10/08
|
|
* @version: 1.0
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@Builder
|
|
public class Statistical {
|
|
private Integer workflowCount;
|
|
private Integer docCount;
|
|
private Integer cusCount;
|
|
private Integer collaborationCount;
|
|
private Integer weiboCount;
|
|
}
|