工业互联网平台2.0版本后端代码
潘志宝
2025-06-09 e1444a2215e405329f492e57d86f77dade6b9206
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
}