|
|
@@ -0,0 +1,15 @@
|
|
|
+package com.jzg.commons.entity.vo;
|
|
|
+
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Schema(description = "审核数量VO")
|
|
|
+@Data
|
|
|
+public class AuditCountVo {
|
|
|
+
|
|
|
+ @Schema(description = "未审核数量")
|
|
|
+ private Long noAuditCount;
|
|
|
+
|
|
|
+ @Schema(description = "审核失败数量")
|
|
|
+ private Long failAuditCount;
|
|
|
+}
|