监督类型、告警内容
This commit is contained in:
@@ -69,6 +69,18 @@ public class SurveyPlanParam implements Serializable {
|
||||
@ApiModelProperty(value = "历史流程实例id列表")
|
||||
private String historyInstanceId;
|
||||
|
||||
/**
|
||||
* 监督类型
|
||||
*/
|
||||
@ApiModelProperty(value = "监督类型")
|
||||
private String supvType;
|
||||
|
||||
/**
|
||||
* 监督对象名称
|
||||
*/
|
||||
@ApiModelProperty(value = "监督对象名称")
|
||||
private String supvObjectName;
|
||||
|
||||
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
|
||||
@@ -74,6 +74,16 @@ public class SurveyPlan extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private String historyInstanceId;
|
||||
|
||||
/**
|
||||
* 监督类型
|
||||
*/
|
||||
private String supvType;
|
||||
|
||||
/**
|
||||
* 监督对象名称
|
||||
*/
|
||||
private String supvObjectName;
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.njcn.supervision.pojo.vo.survey;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -80,6 +81,18 @@ public class SurveyPlanVO extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private String historyInstanceId;
|
||||
|
||||
/**
|
||||
* 监督类型
|
||||
*/
|
||||
@ApiModelProperty(value = "监督类型")
|
||||
private String supvType;
|
||||
|
||||
/**
|
||||
* 监督对象名称
|
||||
*/
|
||||
@ApiModelProperty(value = "监督对象名称")
|
||||
private String supvObjectName;
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
@@ -3,6 +3,7 @@ package com.njcn.supervision.pojo.vo.survey;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -123,6 +124,18 @@ public class SurveyTestVO extends BaseEntity implements Serializable {
|
||||
*/
|
||||
private Integer initiateWarningFlag;
|
||||
|
||||
/**
|
||||
* 监督类型
|
||||
*/
|
||||
@ApiModelProperty(value = "监督类型")
|
||||
private String supvType;
|
||||
|
||||
/**
|
||||
* 监督对象名称
|
||||
*/
|
||||
@ApiModelProperty(value = "监督对象名称")
|
||||
private String supvObjectName;
|
||||
|
||||
/**
|
||||
* 状态:0-删除 1-正常
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user