1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.iocoder.yudao.module.mes.service.pro.workorder.dto;
|
| import lombok.Data;
| import java.math.BigDecimal;
|
| /**
| * 工单工序进度 DTO
| */
| @Data
| public class MesProWorkOrderProcessProgressDTO {
| /**
| * 工序名称
| */
| private String processName;
| /**
| * 工序进度(%)
| */
| private BigDecimal progress;
| }
|
|