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
33
| package com.mes.pp.entity.request;
|
| import lombok.Data;
|
| /**
| * @author wu
| */
| @Data
| public class Reportingdamage {
| /**
| * 工序
| */
| private String thisProcess;
|
| /**
| * 设备
| */
| private String deviceName;
| /**
| * 加工数量
| */
| private Integer completedQuantity;
| /**
| * 次破数量
| */
| private Integer breakageQuantity;
| /**
| * 次破时间
| */
| private String reportingWorkTime;
|
|
| }
|
|