|
@@ -1,5 +1,7 @@
|
|
|
package com.usky.iot.service.vo;
|
|
|
|
|
|
+import java.time.LocalDate;
|
|
|
+
|
|
|
/**
|
|
|
*
|
|
|
* @author fyc
|
|
@@ -23,6 +25,11 @@ public class PmSubmitCountResponseVO {
|
|
|
**/
|
|
|
private Integer notSubmitted;
|
|
|
|
|
|
+ /**
|
|
|
+ * 统计日期
|
|
|
+ **/
|
|
|
+ private LocalDate statisticalDate;
|
|
|
+
|
|
|
public Integer getSubmitOnTime() {
|
|
|
return submitOnTime;
|
|
|
}
|
|
@@ -47,4 +54,12 @@ public class PmSubmitCountResponseVO {
|
|
|
this.notSubmitted = notSubmitted;
|
|
|
}
|
|
|
|
|
|
+ public LocalDate getStatisticalDate() {
|
|
|
+ return statisticalDate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatisticalDate(LocalDate statisticalDate) {
|
|
|
+ this.statisticalDate = statisticalDate;
|
|
|
+ }
|
|
|
+
|
|
|
}
|