liu
23 小时以前 1eb432710b7a3a2e820be10b17c0138b377ee1b8
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;
}