zhangherong
10 天以前 c3ae2cc63c6e771ee7007c041a5f499cc9861f29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.mdc.dto;
 
import lombok.Data;
 
import java.util.UUID;
 
/**
 * @author Lius
 * @date 2023/12/8 10:38
 */
@Data
public class MdcProcessCountDto {
    private String id = UUID.randomUUID().toString();
    private String equipmentId;
    private String equipmentName;
    private String driveType;
//    private String theDate;
    private String sequenceNumber;
    private Long duration;
    private Integer processCount;
}