huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.mes.edging.history.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Author : zhoush
 * @Date: 2024/12/26 20:40
 * @Description:
 */
@ApiModel(description = "磨边历史")
@Data
public class EdgingRequest {
    @ApiModelProperty("设备id")
    private Integer deviceId;
    @ApiModelProperty("线路")
    private Integer workLine;
    @ApiModelProperty("玻璃id")
    private String glassId;
 
}