| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | | package com.doumee.dao.business.dto; |  |   |  | import io.swagger.annotations.ApiModelProperty; |  | import lombok.Data; |  |   |  | /** |  |  * Created by IntelliJ IDEA. |  |  * |  |  * @Author : Rk |  |  * @create 2025/1/8 15:37 |  |  */ |  | @Data |  | public class YwWorkorderDataDTO { |  |   |  |   |  |     @ApiModelProperty(value = "查询类型:1=项目;2=楼层;3=房间", example = "1") |  |     private Integer queryType; |  |   |  |     @ApiModelProperty(value = "业务主键", example = "1") |  |     private Integer queryId; |  |   |  |   |  |   |  |   |  | } | 
 |