|
@ -1,5 +1,6 @@ |
|
|
package com.epmet.screen.dto.result; |
|
|
package com.epmet.screen.dto.result; |
|
|
|
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
|
|
|
|
|
|
import java.io.Serializable; |
|
|
import java.io.Serializable; |
|
@ -37,10 +38,10 @@ public class VolunteerServiceResultDTO implements Serializable { |
|
|
/** |
|
|
/** |
|
|
* 总组织次数 |
|
|
* 总组织次数 |
|
|
* */ |
|
|
* */ |
|
|
private Integer totalOrganizationCount; |
|
|
private Integer totalOrganizationCount = NumConstant.ZERO; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 总参与人数 |
|
|
* 总参与人数 |
|
|
* */ |
|
|
* */ |
|
|
private Integer totalJoinUserCount; |
|
|
private Integer totalJoinUserCount = NumConstant.ZERO; |
|
|
} |
|
|
} |
|
|