eight
2025-03-30 069328ea846a08e673c508725e7e8d019f8a6333
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.lihu.jh.module.system.controller.admin.tenant.vo.tenant;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
@Schema(description = "管理后台 - 租户精简 Response VO")
@Data
public class TenantSimpleRespVO {
 
    @Schema(description = "租户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "租户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
    private String name;
 
}