huang
9 天以前 22e17b6db03ca58bc477a35ca067e55a09cffce7
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.horizontal.station.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 StationRequest {
 
    @ApiModelProperty("设备id")
    private Integer deviceId;
 
    @ApiModelProperty("栅格号")
    private Integer slot;
 
}