IntelligentRecognition/ah-jjsp-service/.svn/pristine/cb/cb15d6f2e5b6bc0789c2636724f...

23 lines
511 B
Plaintext
Raw Normal View History

2024-05-24 16:09:40 +08:00
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;
}