23 lines
511 B
Plaintext
23 lines
511 B
Plaintext
|
|
package com.sercurityControl.proteam.monitor.domain;
|
||
|
|
|
||
|
|
import io.swagger.annotations.ApiModel;
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
import org.apache.poi.ss.formula.functions.T;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author cw chen
|
||
|
|
* @description TODO
|
||
|
|
* @date 2023-04-28 15:00
|
||
|
|
*/
|
||
|
|
@Data
|
||
|
|
@ApiModel("ws通知返回对象")
|
||
|
|
public class NoticeWebsocketResp {
|
||
|
|
|
||
|
|
@ApiModelProperty(value = "通知类型")
|
||
|
|
private String noticeType;
|
||
|
|
|
||
|
|
@ApiModelProperty(value = "通知内容")
|
||
|
|
private T noticeInfo;
|
||
|
|
}
|