提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.vo; |
潘 |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import javax.validation.constraints.NotBlank; |
|
9 |
import javax.validation.constraints.NotNull; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年09月04日 |
|
15 |
*/ |
|
16 |
@Schema(description = "模型平台 - MmItemType Response VO") |
|
17 |
@Data |
|
18 |
@ExcelIgnoreUnannotated |
|
19 |
public class MmItemTypeRespVO { |
|
20 |
|
|
21 |
@Schema(description = "ID") |
|
22 |
@ExcelProperty("ID") |
|
23 |
private String id; |
|
24 |
|
|
25 |
@Schema(description = "名称") |
|
26 |
@ExcelProperty("名称") |
|
27 |
private String itemtypename; |
|
28 |
|
|
29 |
@Schema(description = "类名") |
|
30 |
@ExcelProperty("类名") |
|
31 |
private String itemclasstype; |
|
32 |
|
|
33 |
@Schema(description = "程序集") |
|
34 |
@ExcelProperty("程序集") |
|
35 |
private String assemblyname; |
|
36 |
} |