260720
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
package com.gxwebsoft.gxmu.model;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@ApiModel(value = "TyglDataCenterSummary对象", description = "团员青年数据分析中心汇总")
|
||||
public class TyglDataCenterSummary implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty("团员人数")
|
||||
private Integer memberCount;
|
||||
|
||||
@ApiModelProperty("28岁及以下青年数")
|
||||
private Integer youthUnder28Count;
|
||||
|
||||
@ApiModelProperty("团青比")
|
||||
private String memberYouthRatio;
|
||||
|
||||
@ApiModelProperty("男性人数")
|
||||
private Integer maleCount;
|
||||
|
||||
@ApiModelProperty("女性人数")
|
||||
private Integer femaleCount;
|
||||
|
||||
@ApiModelProperty("男女比例")
|
||||
private String genderRatio;
|
||||
|
||||
@ApiModelProperty("团籍在本组织人数")
|
||||
private Integer archiveInOrgCount;
|
||||
|
||||
@ApiModelProperty("已完善档案人数")
|
||||
private Integer completedProfileCount;
|
||||
}
|
||||
Reference in New Issue
Block a user