指标添加本地变量

This commit is contained in:
andywang
2022-08-10 11:41:40 +08:00
parent 20ff7a2204
commit f11ba7b1bc
6 changed files with 41 additions and 15 deletions

View File

@@ -1,5 +1,6 @@
package com.fibo.ddp.common.model.common;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
/**
@@ -13,25 +14,30 @@ public class BasePage {
/**
* 当前页数
*/
@TableField(exist = false)
private int page;
/**
* 每页显示的行数
*/
@TableField(exist = false)
private int rows;
/**
* 开始行数
*/
@TableField(exist = false)
private Integer curRow;
/**
* 结束行数
*/
@TableField(exist = false)
private Integer endRow;
/**
* 总行数
*/
@TableField(exist = false)
private Integer total;
}

View File

@@ -219,4 +219,9 @@ public class Field extends BasePage implements Serializable {
* 消息队列源id
*/
private Long mqSourceId;
/**
* 是否局部变量
*/
private Boolean isLocalVariable;
}

View File

@@ -40,6 +40,7 @@ public class FieldSaveParam implements Serializable {
private String dictVariable;
private Integer sourceType;
private Long mqSourceId;
private Boolean isLocalVariable;
//
// public Field toField() {