huang
8 天以前 9571229a2013472dc701ecf5767f2873b36d8f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.mes.horizontal.details.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 HorizontalCageVO {
 
    @ApiModelProperty("id")
    private Integer id;
    @ApiModelProperty("玻璃id")
    private Integer enableState;
 
}