海外平台-数据全英文化
This commit is contained in:
@ -64,6 +64,9 @@ public class Event implements Serializable {
|
||||
@ApiModelProperty(value = "事件描述")
|
||||
private String description;
|
||||
|
||||
@ApiModelProperty(value = "事件描述-英文")
|
||||
private String descriptionEn;
|
||||
|
||||
@ApiModelProperty(value = "1 已确认 0 未确认")
|
||||
private Integer confirmStatus;
|
||||
|
||||
|
||||
@ -0,0 +1,18 @@
|
||||
package com.ho.flow.vo;
|
||||
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author kerwin
|
||||
*/
|
||||
@Data
|
||||
public class EventVo {
|
||||
|
||||
@ApiModelProperty(value = "id")
|
||||
private Long id;
|
||||
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String name;
|
||||
}
|
||||
@ -18,4 +18,8 @@ public class DropDownReq {
|
||||
|
||||
@ApiModelProperty(value = "当前节点名")
|
||||
String currentStep;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "中英切换-查询字段")
|
||||
private String lang;
|
||||
}
|
||||
|
||||
@ -63,4 +63,7 @@ public class EventReqPageVO {
|
||||
@ApiModelProperty(value = "告警id集合")
|
||||
private List<Long> ids;
|
||||
|
||||
@ApiModelProperty(value = "中英切换-查询字段")
|
||||
private String lang;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user