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
| package org.jeecg.modules.screen.dto;
|
| import lombok.Data;
|
| /**
| * @author Lius
| * @date 2024/8/22 10:09
| */
| @Data
| public class TodayProductionDto {
|
| /**
| * 产线名称
| */
| private String productionName;
|
| /**
| * 计划量
| */
| private Integer planCount;
|
| /**
| * 完成量
| */
| private Integer completionCount;
|
| }
|
|