2026-04-22 f5fec3e27510969ee9f2fc89d2e1e2868d25f1f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.technology.bean.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "TechnologyRoutingOperationParamSyncDto对象", description = "工艺路线工序参数同步参数")
public class TechnologyRoutingOperationParamSyncDto {
 
    @ApiModelProperty("工艺路线工序id")
    private Long technologyRoutingOperationId;
 
    @ApiModelProperty("是否覆盖当前工序已存在参数,默认true")
    private Boolean replaceExisting;
}