提交 | 用户 | 时间
|
3a6dfc
|
1 |
package com.iailab.module.model.api.mcs.dto; |
L |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.io.Serializable; |
|
7 |
|
|
8 |
/** |
|
9 |
* @author PanZhibao |
|
10 |
* @Description |
|
11 |
* @createTime 2024年11月20日 |
|
12 |
*/ |
|
13 |
@Schema(description = "模型平台 - Request VO") |
|
14 |
@Data |
|
15 |
public class AlarmConfigReqDTO implements Serializable { |
|
16 |
|
|
17 |
private static final long serialVersionUID = 1L; |
|
18 |
|
|
19 |
@Schema(description = "消息标题") |
|
20 |
private String title; |
|
21 |
|
|
22 |
@Schema(description = "监控对象") |
|
23 |
private String alarmObj; |
|
24 |
} |