1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package cn.iocoder.yudao.module.system.controller.app.tenant.vo;
|
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| @Schema(description = "用户 App - 租户 Response VO")
| @Data
| public class AppTenantRespVO {
|
| @Schema(description = "租户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
| private Long id;
|
| @Schema(description = "租户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
| private String name;
|
| }
|
|