package com.iailab.module.mhub.mdk.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年06月06日
|
*/
|
@Schema(description = "模型托管平台 - MDK模型仓库 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class MdkRepositoryRespVO {
|
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@ExcelProperty("ID")
|
private String id;
|
|
@Schema(description = "名称", example = "")
|
private String name;
|
|
@Schema(description = "是否私有", example = "")
|
private Integer isPrivate;
|
|
@Schema(description = "所属人", example = "")
|
private String belongTo;
|
|
@Schema(description = "备注", example = "")
|
private String remark;
|
|
@Schema(description = "创建者")
|
private String creator;
|
|
@Schema(description = "创建时间")
|
private Date createTime;
|
|
@Schema(description = "更新者")
|
private String updater;
|
|
@Schema(description = "更新时间")
|
private Date updateTime;
|
}
|