潘志宝
2024-09-06 c06f48bded461209f117167fbf89ed57a3f37ef4
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mcs.sche.vo;
2
3 import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7 /**
8  * @author PanZhibao
9  * @Description
10  * @createTime 2024年09月04日
11  */
12 @Schema(description = "模型平台 - Response VO")
13 @Data
14 @ExcelIgnoreUnannotated
15 public class StScheduleUserRespVO {
16
17     private String id;
18
19     /**
20      * 用户名称
21      */
22     private String username;
23
24     /**
25      * 调整状态
26      */
27     private String adjuststatus;
28 }