无关风月
2025-02-28 6e5aa53e2f82b6c32c03f63f2aa6c678d06c5118
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ruoyi.system.query;
 
import com.ruoyi.common.core.domain.BasePage;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "租户查询Query")
public class TTenantAppletQuery extends BasePage {
 
    @ApiModelProperty(value = "租户姓名或电话")
    private String residentNameOrPhone;
 
 
 
 
}