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; }