package cn.iocoder.yudao.module.mes.api.task.dto; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.math.BigDecimal; /** * MES 生产任务报工工时统计 Response DTO * * @author 超级管理员 */ @Schema(description = "RPC 服务 - MES 生产任务报工工时统计 Response DTO") @Data public class MesProWorkHourSummaryRespDTO { @Schema(description = "班组编号") private Long teamId; @Schema(description = "班组名称") private String teamName; @Schema(description = "任务数") private Integer taskCount; @Schema(description = "总生产时长(人日)") private Integer totalDuration; @Schema(description = "总工时(人时 = 人日 × 8)") private BigDecimal workHours; }