huang
8 天以前 22e17b6db03ca58bc477a35ca067e55a09cffce7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.mes.vertical.temperingtask.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2025/6/27 14:20
 * @Description:
 */
@ApiModel(description = "理片笼钢化相关")
@Data
public class TemperingTaskDTO {
    @ApiModelProperty(value = "工程号", position = 1)
    private String engineerId;
 
    @ApiModelProperty(value = "钢化版图id", position = 2)
    private Integer temperingLayoutId;
 
}