| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @ApiModel("随手拍列表统计返回参数") |
| | | public class ComActEasyPhotoStatisticsVO { |
| | | |
| | | @ApiModelProperty("待审核数量") |
| | | private Integer examineNum; |
| | | private Integer examineNum = 0; |
| | | |
| | | @ApiModelProperty("待验证数量") |
| | | private Integer verificationNum; |
| | | private Integer verificationNum = 0; |
| | | |
| | | @ApiModelProperty("已驳回数量") |
| | | private Integer rejectNum; |
| | | private Integer rejectNum = 0; |
| | | |
| | | @ApiModelProperty("已完成数量") |
| | | private Integer completeNum; |
| | | private Integer completeNum = 0; |
| | | |
| | | @ApiModelProperty("优质数量") |
| | | private Integer yzAllTotal = 0; |
| | | |
| | | @ApiModelProperty("今日优质数量") |
| | | private Integer yzDayTotal = 0; |
| | | |
| | | @ApiModelProperty("精良数量") |
| | | private Integer jlAllTotal = 0; |
| | | |
| | | @ApiModelProperty("今日精良数量") |
| | | private Integer jlDayTotal = 0; |
| | | |
| | | @ApiModelProperty("普通数量") |
| | | private Integer ptAllTotal = 0; |
| | | |
| | | @ApiModelProperty("今日普通数量") |
| | | private Integer ptDayTotal = 0; |
| | | |
| | | @ApiModelProperty("一般数量") |
| | | private Integer ybAllTotal = 0; |
| | | |
| | | @ApiModelProperty("今日一般数量") |
| | | private Integer ybDayTotal = 0; |
| | | |
| | | @ApiModelProperty("奖励总数量") |
| | | private BigDecimal allRewardAmount = BigDecimal.ZERO; |
| | | |
| | | @ApiModelProperty("今日奖励数量") |
| | | private BigDecimal dayRewardAmount = BigDecimal.ZERO; |
| | | } |