You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
489 B
Java
19 lines
489 B
Java
2 years ago
|
package com.supervision.pojo.vo;
|
||
|
|
||
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class TalkResultResVO {
|
||
|
|
||
|
@ApiModelProperty("若有动作,这是需要执行的动作内容")
|
||
|
private ActionDTO action;
|
||
|
|
||
|
/**
|
||
|
* 后端返回给前端时使用,表示该是消息还是action动作,1消息,2动作
|
||
|
*/
|
||
|
@ApiModelProperty("后端返回给前端时使用,表示该是消息还是action动作,1消息,2动作")
|
||
|
private Integer type;
|
||
|
|
||
|
}
|