xiaoyi
4 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
 
}