25 lines
583 B
Plaintext
25 lines
583 B
Plaintext
|
|
package com.sercurityControl.decision.domain.vo;
|
||
|
|
|
||
|
|
import io.swagger.annotations.ApiModel;
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@ApiModel("无施工班组统计")
|
||
|
|
public class NoWorkNoticeStatisticVo {
|
||
|
|
|
||
|
|
@ApiModelProperty("今日未报计划")
|
||
|
|
private Integer todayNoPlan;
|
||
|
|
|
||
|
|
@ApiModelProperty("昨日未报计划")
|
||
|
|
private Integer yesterdayNoPlan;
|
||
|
|
|
||
|
|
|
||
|
|
@ApiModelProperty("今日有计划未作业")
|
||
|
|
private Integer todayPlanNoWork;
|
||
|
|
|
||
|
|
@ApiModelProperty("昨日有计划未作业")
|
||
|
|
private Integer yesterdayPlanNoWork;
|
||
|
|
|
||
|
|
}
|