package com.iailab.module.mhub.mdk.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2025年06月09日
|
*/
|
@Data
|
public class MdkSettingSelectSaveReqVO {
|
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
private String id;
|
|
@Schema(description = "参数id", example = "")
|
private String settingId;
|
|
@Schema(description = "key", example = "")
|
private String selectKey;
|
|
@Schema(description = "名称", example = "")
|
private String name;
|
}
|